/*----------------------------------*/
/*       INDEX.HTML STYLESHEET      */
/*----------------------------------*/

body {
    overflow-x: hidden;
}


/*----------------------------------*/
/*              SPLASH              */
/*----------------------------------*/

.my-splash {
    position: relative;
    height: 600px;
    align-items: center;
    justify-content: center;
}

.my-splash-text {
    position: relative;
    left: -200px;
    width: 550px;
}
.my-splash h1 {
    font-size: 4em;
}

.my-splash-name {
    height: 75px;
    position: relative;
    top: -10px;
}

.my-splash-image {
    position: absolute;
    height: 550px;
    top: -75px;
    left: 390px;
}

@media (max-width: 1025px) {
    .my-splash {
        justify-content: start;
        align-items: end;
        width: 100%;
        overflow: hidden;
    }
    .my-splash-text {
        position: static;
        margin: 2em;
        width: 480px;
    }
    .my-splash-image {
        position: absolute;
        height: 700px;
        top: 0px;
        left: 360px;
    }
}

@media (max-width: 576px) {
    .my-splash-text {
        z-index: 0;
        font-size: 0.9em;
        margin: 1.5em;
        width: 480px;
    }
    .my-splash-name {
        height: 65px;
        top: -10px;
    }
    .my-splash-image {
        z-index: -1;
        position: absolute;
        height: 800px;
        top: -25px;
        left: -130px;
        opacity: 25%;
    }
}


/*----------------------------------*/
/*          INFO CARD LINKS         */
/*----------------------------------*/

.my-container-infocards {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    width: 850px;
    margin: 3em auto;
    gap: 35px;
}

.my-infocard {
    cursor: pointer;
    width: 250px;
    background-color: #ffffff;
    padding: 1em;
    text-align: center;
    border-radius: 3%;
    /* border: 5px solid #cfdddd; */
    box-shadow: 5px 5px 4px rgba(134, 172, 194, 0.256);
}
.my-infocard img {
    width: 100%;
}

.my-infocard-title {
    font-weight: 700;
    font-size: 1.2em;
    margin: 0.5em auto 0;
}

@media (max-width: 850px) {
    .my-container-infocards {
        width: 650px;
        gap: 25px;
    }
}

@media (max-width: 700px) {
    .my-container-infocards {
        width: 500px;
        gap: 20px;
        margin: 1.5em auto;
    }
    .my-infocard-title {
        font-size: 1em;
    }
}

@media (max-width: 576px) {
    .my-container-infocards {
        width: 100%;
        gap: 6px;
        flex-flow: column nowrap;
        padding: 0 0.3em;
        margin: 1.2em auto;
    }
    .my-infocard {
        width: 100%;
        background-color: #ffffff;
        padding: 0.7em;
        text-align: center;
        border-radius: 7px;
        box-shadow: 5px 5px 4px rgba(98, 136, 158, 0.256);
    }
    .my-infocard:hover {
        box-shadow: 5px 5px 4px rgba(50, 75, 111, 0.256);
    }
    .my-infocard-title {
        font-size: 0.9em;
        margin: 0 auto 0;
    }
    .my-infocard img { display: none; }
}

/*----------------------------------*/
/*           CONTACT FORM           */
/*----------------------------------*/

.my-contact-form {
    width: 600px;
}

.my-contact-message {
    width: 700px;
}

.my-btn-highlight {
    color: #FDFDFD;
    background-color: #ED7B84;
}
.my-btn-highlight:active, .my-btn-highlight:hover {
    background-color: #e15e8c;
}


@media (max-width: 775px) {
    .my-contact-message {
        width: 600px;
    }
}
@media (max-width: 650px) {
    .my-contact-message {
        width: 100%;
        padding: 0.5em;
        font-size: 0.9em;
    }
    .my-contact-form {
        width: 100%;
    }
    .my-contact-form input, .my-contact-form textarea, .my-contact-form button {
        font-size: 0.9em;
    }
}