*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
}
 
body {
    display: flex;
    flex-direction: column;;
    height: 100vh;
    background-color: #98fb98;
    font-family: monospace, sans-serif, round;
}
 
nav {
    background: #2f3640;
    height: 80px;
    width: 100%;
} 
 
.logo {
    color: white;
    font-size: 30px;
    line-height: 80px;
    padding: 0 100px;
    font-weight: bold;
 
}
 
nav ul {
    float: right;
    margin-right: 20px;
 
}
 
nav ul li {
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
 
}
 
nav ul li a {
    color: white;
    font-size: 17px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
}
 
a.active,a:hover {
    background: #1b9;
    transition: .5s;
 
}
 
.checkbtn {
    font-size: 30px;
    color: white;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}
 
#check {
    display: none;   
}
 
@media (max-width: 952px){
    label.logo{
        font-size: 30px;
        padding-left: 50px;
 
    }
    nav ul li a {
        font-size: 16px;
    }
}

@media (max-width: 858px){
    .checkbtn{
        display: block;
    }
    ul{
      position: fixed;
      width: 100%;
      height: 100vh;
      background: grey;
      top: 80px;
      left: -100%;
      text-align: center;
      transition: .5s;
    }
    nav ul li{
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }
    nav ul li a{
        font-size: 20px;
    }
    a:hover,a.active{
        background: none;
        color: black;
    }
    #check:checked ~ ul{
        left: 0;
    }
}

#creds{
    margin-top:auto;
    bottom:0;
}

#description {
    color: white;
    font-weight: bold;
    font-family: "palatino linotype";
    display:flex;
    margin-left: 25px;
    margin-right: 25px;
    text-align: justify;  
    border: 20px solid darkgrey;
    border-style: ridge;
    background-color: #2f3640;
    margin-top: 40px;
    padding: 10px;
}
#stonks{
    display: flex;
    justify-content: center;
    margin: 50px;
    
}

#contact_description {
    color: white;
    font-weight: bold;
    font-family: "palatino linotype";
    display:flex;
    margin-left: 25px;
    margin-right: 25px;
    text-align: justify;  
    border: 20px solid darkgrey;
    border-style: ridge;
    background-color: #2f3640;
    margin-top: 40px;
    padding: 10px;
}
li{
    margin-left: -187px;
}
a{
    color: white;
}
.search_box{
    display: flex;
    justify-content: center;
    margin-top: 200px;
}

#drop_down {
    font-size: 65%;
    background-color: rgb(45, 167, 192);
    color: white; 
    display: flex;
    justify-content: space-evenly;
    border: 20px solid rgb(45, 167, 192);
    border-style: ridge;
    margin-bottom: 50px;
}

a {
    color: white;
    text-decoration: none;
    font-family: 'Courier New', Courier, monospace;
}

#website_title {
    font-size: 30px;
    text-align: center;
    font-family: monospace, sans-serif, round;
    color: white;
}
 
.search_box {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #2f3640;
    height: 60px;
    border-radius: 40px;
    padding: 10px;
}
.search_box:hover > #search_txt {
    width: 240px;
    padding: 0 6px;
}
 
.search_box:hover > #search_btn {
    background: white;
}
 
 
#search_btn {
    color: #98fb98;
    float: right;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2f3640;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
}
 

#search_txt {
    border: none;
    background: none;
    outline: none;
    float: left;
    padding: 0;
    color: white;
    font-size: 16px;
    transition: 0.4s;
    line-height: 40px;
    width: 0px;
}

#block_one{
    display: flex;
    flex-direction: column;
    margin: -50px;
}
#description{
    color: white;
    font-weight: bold;
    font-family: "palatino linotype";
    display:flex;
    margin-left: 25px;
    margin-right: 25px;
    text-align: justify;  
    border: 20px solid darkgray;
    border-style: ridge;
    background-color: #2f3640;
    margin-top: 40px;
} 
#display_box{
    width: 1000px;
    height: xxpx;
    background: #2f3640;
    border: 15px solid darkgray;
    border-style: ridge;
    color: white;
    padding: 25px;
}
#reach_out{
    margin-left: -250px;
}



