@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;800&display=swap');

body {
    /* background-color: rgb(1, 135, 153);*/
    margin: 0;

}


@media only screen and (max-width: 901px) {
    .main-card {
        display: none;
    }
}

@media only screen and (max-width:900px) {


    .splash-grid {
        grid-template-columns: 1fr !important;
    }
}


.main-content {
    max-width: 800px;
    margin: 0 auto;
}

.icons {
    display: flex;
    justify-content: center;
}

input {
    border-radius: 9px;
    height: 38px;
}

nav {
    width: 100%;
    background-color: rgb(59, 59, 59);
    margin: 0px;
    min-height: 50px;
    color: white;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}



.card {
    box-shadow: 5px 15px 15px 5px #7c7c7c;
}


.icon-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.splash-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}


.eyebrow-text {
    font-family: Montserrat, sans-serif;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    color: gray;
}

.splash-text {
    font-family: Roboto, sans-serif;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 60px 60px;
    padding: 25px;
    font-size: 1.2rem;
}

.sub-title {
    margin: 20px 30px;
    font-size: 1.2em;
    color: black;
    font-family: Roboto, sans-serif;
}

.main-card {
    background-color: white;
    margin: 30px 40px 30px 40px;
    font-family: Roboto, sans-serif;
    color: white;
    min-height: 300px;
    background-image: url("/static/man.jpg");
    background-size: cover;
    background-position: right;
    border-radius: 9px;
    position: relative;
}

.submit-button {
    border: 2px white solid;
    border-radius: 9px;
    background-color: rgb(62, 75, 255);
    color: white;
    padding: 5px;
    height: 38px;
    text-decoration: none;
}

.submit-button:hover {
    background-color: blue;
}

.splash-title {
    position: absolute;
    bottom: 0;
    margin-bottom: auto;
    background-color: rgb(1, 135, 153);
    border-radius: 0 0 9px 9px;
    width: 100%;
}

.splash-title>h1 {
    text-align: center;
}

.cta-card {
    color: white;
    background-color: rgb(1, 135, 153);
    font-size: 1.2rem;
    font-family: Roboto, sans-serif;
    padding: 25px;

}

.cta-card>h2 {
    font-size: 16px;
}