/* Place your CSS styles in this file */


body, html {
    height: 100%;
    max-width: 100%;
    overflow: hidden;
}

body  {
    background-color: rgb(4, 17, 38);
    letter-spacing: 2px;
}


.navlink {
 color: rgb(84, 240, 188);  
 padding-inline: 4%; 
 transition: all 500ms;
font-size: 18px;
}

.navlink:hover {
    color: whitesmoke;
    font-size: 22px;
    font-size-adjust: 22px;
    
}


#navbar{
padding: 2%;
color: rgb(84, 240, 188);
text-align: right;
text-underline-offset: 15%;

position: absolute;
top: 0px;
left: 680px;
width: 680px;

display: flex;
flex-wrap: wrap;
justify-content: flex-end;
}


#name {
    color: #ffffff;
    font-weight: bold;
    font-size: 55px;
  
}
#hi {
    color: rgb(84, 240, 188);
font-size: 20px;
}

#welcome {
    color:  #b2beb5;
    font-weight: bold;
    font-size: 55px;
      margin-top: -2%;
      margin-bottom: -0.5%;
}
p {
    color: #b2beb5;
    margin-bottom: 5%;
    margin-top: 5%;
    font-size: 20px;
}

.p1 {
    margin-bottom: -3%;
}
.p2 {
    margin-bottom: -3%;
}
.p3 {
    margin-bottom: 10%;
}

header {
    margin-left: 20%;
    margin-right: 20%;
    margin-top: 11%;
    margin-bottom: -250%;
    text-align: left;
    opacity: 0.9;
}

#button {
    border-color: rgb(84, 240, 188);
    border-style: solid;
    border-width: 2%;
    border-radius: 10px;
    text-align: center;
    color: rgb(84, 240, 188);
    padding: 3%;
    letter-spacing: 2px;
    font-weight: normal;
    font-size: 25px;
    transition: all 500ms;
    text-decoration: none;

}


@media (hover: hover) {
    #button:hover {
        color: whitesmoke;
        border-color: whitesmoke;
        font-size: 30px;
        font-size-adjust: 30px;
    }
}



@media only screen and (max-width: 376px) {
    body, html {
        height: 100%;
        max-width: 100%;
        overflow: hidden;
        margin: 0;
        padding: 0;
    }

    #navbar {
        padding: 0;
        margin-top: 2%;
        color: rgb(84, 240, 188);
        text-align: left;
        text-underline-offset: 15%;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        box-sizing: border-box;
        z-index: 1000;
    }

    .navlink {
        color: rgb(84, 240, 188);  
        padding-inline: 4%; 
        font-size: 16px;
    }

     .display-container {
        width: 100vw;
        height: 100vh;
        margin: 0;
        padding-top: 5%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }   

    header {
        width: 90%;
        height: 90vh;
        box-sizing: border-box;
    }

    #hi, #name, #welcome, #button {
        width: 100%;
        max-width: 80%;
        margin: 2%;
    }

    #name, #welcome {
        font-size: 30px;
    }

    p {
        width: 80%;
        max-width: 80%;
    }

    .p3 {
        margin-top: 3%;
    }

}

@media only screen and (min-width: 377px) and (max-width: 767px) {

    body, html {
        height: 100%;
        max-width: 100%;
        overflow: hidden;
        margin: 0;
        padding: 0;
    }

    #navbar {
        padding: 2%;
        color: rgb(84, 240, 188);
        text-align: left;
        text-underline-offset: 15%;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        box-sizing: border-box;
        z-index: 1000;
    }

    .navlink {
        color: rgb(84, 240, 188);  
        padding-inline: 4%; 
        font-size: 18px;
    }

     .display-container {
        width: 100vw;
        height: 100vh;
        margin: 0;
        padding-top: 5%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }   

    header {
        width: 90%;
        height: 90vh;
        box-sizing: border-box;
    }

    #hi, #name, #welcome, #button {
        width: 100%;
        max-width: 80%;
        margin: 2%;
    }

    p {
        width: 80%;
        max-width: 80%;
    }

    .p3 {
        margin-top: 3%;
    }

}

@media only screen and (min-width: 768px) and (max-width: 1024px) {


    body, html {
        height: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    #navbar {
        padding: 2%;
        color: rgb(84, 240, 188);
        text-align: left;
        text-underline-offset: 15%;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        z-index: 1000;
    }
    
    .navlink {
        color: rgb(84, 240, 188);  
        padding-inline: 4%; 
        font-size: 18px;
    }
    
    .display-container {
        width: 100vw;
        height: 100vh;
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }   
    
}