*{
    margin :0;
    padding:0;
}

body {
    min-height: 100vh;
    background-image: url("sky.JPG");
    background-size:cover;
    background-repeat: no-repeat;
    background-position: center;
    font-family: "Courier New", monospace;

    /*
    width: 35em;
    margin: 0 auto;
    font-family: "Courier New", monospace;
    background-color: #f0f7fa;
    color: #3493c9;
    */
}

.typewriter{
    display: flex;
    justify-content: center;
    align-items: center;
   
}
.typewriter p{
    padding-top: 150px;
    font-family: "Archivo Black","consolas",'sans-serif';
    font-size: 2.5rem;
    color: white;
    overflow: hidden;

    white-space: nowrap;
   /* border-right: 1px solid;*/

    animation: typing 5s steps(50) forwards, blink 1s step-end;
}
@keyframes typing{
    from{
        width:0;
    }
    to {
        width: 100%;
    }
}
@keyframes blink {
    50%{
        border-color: transparent;
    }
}
h2{
    text-align: center;
    justify-content: center;
    color:rgb(85, 37, 4);
    font-family: "Archivo Black","consolas",'sans-serif';
}

nav{
    background-color: none;
    /*box-shadow: 3px 3px 5px rgba(0,0,0,0.1);*/
}
nav ul{
    height: 150px;
    width : 100%;
    list-style :none;
    display:flex;
    justify-content: flex-end;
    align-items: center;
}

nav li{
    height: 80px;
}
img.button-img{
    padding-top: 10px;
    height: 45px;
    width: 250px;
}

nav a{
    height: 50%;
    padding : 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color:white;
    border-radius: 20px;
    font-family: "Datatype","consolas",'sans-serif';
    gap : 5px;
    transition: background-color 0.25s ease-in-out; 
    transition: color 0.25s ease-in-out;   
}
nav a:hover
{
   /* background-color: rgba(39, 101, 164, 0.534);*/
    background-color: rgba(128, 128, 128, 0.15);
    color:rgb(202, 101, 34);
    /*
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: rgb(202, 101, 34);
    */
}
.child{
  transition: fill 0.25s ease-in-out;   
}
nav a:hover .child{
    fill: rgb(202, 101, 34);
}

.child2{
  transition: fill 0.25s ease-in-out;   
}
nav a:hover .child2{
    fill: rgb(202, 101, 34);
}
.child3{
  transition: fill 0.25s ease-in-out;   
}
nav a:hover .child3{
    fill: rgb(202, 101, 34);
}
.child4{
  transition: fill 0.25s ease-in-out;   
}
nav a:hover .child4{
    fill: rgb(202, 101, 34);
}

nav li:first-child{
    margin-right: auto;
}

.sidebar{
    position:fixed;
    top:0;
    right:0;
    height: 100vh;
    width:250px;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

}
.sidebar li{
    width: 100%;

}
.sidebar a{
    width: 100%;
    color: white;
    display: flex;
    align-items: center;
}
.sidebar a:hover{
   background-color: rgba(128, 128, 128, 0.2);
   color: white;
}

.menu-button
{
    display: none;
}
@media(max-width:800px)
{
    .hideOnMobile{
        display: None;
    }
    .menu-button{
        display: block;
    }
    .typewriter p{
        white-space:pre-wrap;
    }
}
@media(max-width : 400px)
{
    .sidebar{
        width: 100%;
    }
}

