body {
    font-family: 'Lato', sans-serif;
    background: rgb(250, 250, 250);
    margin: 0 0;
    transition: 0.3s;
    text-align: center;
    padding: 0 0;
    overflow-y: scroll;
    font-size: 1.0rem;
    letter-spacing: 0.1rem;
}


/* -----------  grids  ----------*/

.grid {
    display: grid;
    grid-template-areas: "header " "main" "footer";
    grid-template-columns: 100%;
}

header {
    grid-area: header;
    position: fixed;
    z-index: 1;
    padding-bottom: 0;
    left: 0;
    right: 0;
    height: 90px;
    color: black;
    transition: 0.3s;
}

main {
    grid-area: main;
    height: auto;
}

footer {
    grid-area: footer;
    height: auto;
    padding-bottom: 5rem;
    background: rgb(230, 230, 230);
    border-top: 1px solid rgb(109, 199, 204);
}


/* ----------  header  ---------*/

.imgll, a {
    padding-top: 10px;
    width: auto;
    height: 65px;
    align-items: center;
}

.imgAws {
    padding-top: 10px;
    padding-bottom: 10px;
    width: auto;
    height: 65px;
    align-items: center;
}


/* ----------  navbar  ----------*/

.navNav {
    height: 90px;
    text-decoration: none;
    list-style: none;
    padding: 0;
    max-width: 1290px;
    margin: auto;
}

.navNav>.navImg {
    padding-top: 10px;
    height: auto;
    margin: 0;
}

.navNav>.navItem {
    visibility: hidden;
    padding-top: 35px;
    margin: 0 40px 0 0;
    height: auto;
    text-align: right;
}

.transBox {
    background: rgb(250, 250, 250);
    opacity: 0.90;
}

button {
    color: black;
    background: rgb(250, 250, 250);
    border: none;
    border-style: none;
    color: black;
    font-weight: 400;
    font-size: 1.2rem;
    transition: 0.3s;
    cursor: pointer;
}

button:focus {
    outline: 0;
}


/* ----------  main  ---------*/

.top {
    display: grid;
    align-items: center;
    max-width: 1500px;
    margin: auto;
    margin-top: 20%;
    margin-bottom: 80px;
    grid-template-columns: repeat(auto-fit, minmax(auto, auto));
    grid-auto-rows: minmax(auto, auto);
}

.topItem {
    visibility: visible;
    position: relative;
    width: 90%;
    height: auto;
    margin-top: 20%;
    padding: 0 0;
    cursor: pointer;
}

.top > h1 {
    text-align: left;
    padding: 27.5% 10% 0 25%;
    width: auto;
    height: auto;
    font-size: 2.5rem;
    font-weight: 300;
}

.bottom > h2 {
    display: grid;
    width: 100%;
    height: 10px;
    font-size: 1.5rem;
    padding-top: 100px;
    font-weight: 400;
}

.signUp > h2 {
    margin-top: 4.9rem;;
    font-size: 1.25rem;
    padding: 20px;
    font-weight: 400;
}

.content {
    display: grid;
    align-items: top;
    max-width: 1500px;
    margin: auto;
    grid-template-columns: repeat(auto-fit, minmax(auto, auto));
    grid-auto-rows: minmax(auto, auto);
}

.contentItem {
    align-items: left;
    padding: 50px 25%;
}

.contentItem>.imgContent {
    width: 40%;
    padding: 5%;
}

.contentItem > p {
    font-size: 0.85rem;
}

.name {
    font-size: 0.9rem;
    font-weight: 400;
}

p {
    text-align: left;
}

b {
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
}

h3 {
    font-size: 0.9rem;
}

h4 {
    margin: 0 0 10px 0;
    font-weight: 400;
    font-size: 0.9rem;
}

.mail>a {
    text-decoration: none;
    color: black;
    font-size: 0.95rem;
    transition: 0.3s;
}


/* ----------  footer  ---------*/


/* -----------  form  ----------*/

.form {
    padding: 20px;
    left: 50%;
    border-radius: none;
}

input[type=text] {
    font-weight: 400;
    font-size: 0.8rem;
    width: 300px;
    height: 30px;
    padding: 7px;
    border: 0.5px solid black;
    box-sizing: border-box;
    background: white;
    box-shadow: none;
    border-radius: none;
    align-items: center;
    outline: none;
}

input[type=submit] {
    margin: 5px 0;
    font-weight: 400;
    font-size: 0.8rem;
    width: 180px;
    height: 30px;
    padding: 7px;
    background: rgb(60, 60, 60);
    color: rgb(255, 255, 255);
    box-shadow: none;
    border-radius: none;
    box-sizing: border-box;
    align-items: center;
    border: 0.5px solid black;
    cursor: pointer;
}

input:hover[type=text] {
    font-weight: 600;
}

.submit:hover[type=submit] {
    opacity: 0.7;
}


/* ------  desktop screen  -----*/

@media only screen and (min-width: 914px) {
    /* ----------  main  ----------*/
    .top {
        margin-top: 45px;
        padding: 0px 30px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
        grid-auto-rows: minmax(auto, auto);
    }
    .navNav>.navItem {
        visibility: visible;
    }
    .navNav>.navImg {
        position: absolute;
    }
    .top>h1 {
        font-size: 3.25rem;
    }
    .topItem {
        visibility: visible;
        margin: 0 10%;
        width: 90%;
    }
    .content {
        padding: 0px 30px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
        grid-auto-rows: minmax(auto, auto);
    }
    .contentItem>.imgContent {
        width: 30%;
    }
    input[type=text] {
        font-size: 0.7rem;
        width: 300px;
    }
    input[type=submit] {
        font-size: 0.7rem;
        width: 180px;
    }
}