*{
    
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: rgb(215, 248, 248);
}

@media (min-width: 600px){
    *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        background-color: rgb(215, 248, 248);
    }
    .logo{
        font-size: 70px;
        padding-top: 20px;
        padding-bottom: 20px;
        gap: 50px;
    }
    .float{
        width: 50%;
    }
    .content{
        padding: 100px;
        font-size: 22px;
    }
    .menu{
        display: flex;
        max-height: none;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .menu a{
        padding: 15px 20px;
        color: white;

    }
    .menu-toggle, .hamburger{
        display: none;
        color: white;
    }
    .float{
        width: 50%;
    }
}

.header{
    background-color:  rgb(3, 56, 100);
    box-shadow: #2a2a2a 0px 0px 10px 0px;
    margin-bottom: 1px;
     color: aliceblue;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    font-size: 20px;
    justify-content: space-between;
    width: 100%;

}

.header .flex-container {
    color: rgb(255, 255, 255);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
      background-color:  rgb(3, 56, 100);
    padding: 10px;
    font-size: 40px;
}

.header .menu a{
    color: rgb(255, 255, 255);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
      background-color:  rgb(3, 56, 100);
    padding: 10px;
    font-size: 20px;
}

.header .menu a:hover{
    color: aquamarine;
    text-decoration: none;
}

.flex-container {
  display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    padding-right: 50px;
}

.logo{
    color: rgb(253, 253, 253);
  font-family: 'fantasy';
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
   display: flex;
   gap: 30px;
   justify-content: space-between;
   font-size: 50px;
}

.float{
    float: right;
    margin: 10px;
    padding: 1em;
    font-size: 20px;
    color: rgb(255, 255, 255);
    text-align: justify;
    width: 40%;
}

.menu{
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.menu-toggle{
    display: none;
    color: aliceblue;
    background-color: white;
}

.hamburger{
    display: flex;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    margin: 10px;
    position: relative;
     color: aliceblue;
    height: 23px;
    justify-content: space-between;
}

.hamburger span{
    display: block;
    height: 4px;
    width: 100%;
     color: aliceblue;
    background: #333;
    border-radius: 2px;
}

.menu{
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
     color: aliceblue;
    flex-direction: column;
}

.menu-toggle:checked + .hamburger span:nth-child(1){
    transform: rotate(45deg) translate(5px, 5px);
     color: aliceblue;
}

.menu-toggle:checked + .hamburger span:nth-child(2){
    opacity: 0;
     color: aliceblue;
}

.menu-toggle:checked + .hamburger span:nth-child(3){
    transform: rotate(-45deg) translate(5px, -5px);
     color: aliceblue;
}
.menu-toggle:checked ~ .menu{
    display: block;
    max-height: 200px;
     color: aliceblue;
}
.menu a{
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #222;
    color: aliceblue;
}

.content h1{
    text-align: center;
    padding: 20px;
    font-size: 50px;
    color: rgb(3, 56, 100);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin-top: 10px;
}

.content{
    text-align: center;
    padding: 50px;
    font-size: 20px;
    color: rgb(2, 7, 70);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6em;
}

.content input[type="button"]{
    background-color: rgb(104, 92, 92);
     border: none;
     color: white; 
     padding: 15px 32px;
    text-align: center;
       text-decoration: none;
        display: inline-block; 
        font-size: 16px; 
        margin: 4px 2px; 
        cursor: pointer; 
        border-radius: 12px;
        margin-top: 20px;
}

.content input[type="button"]:hover{
     background-color: rgb(176, 167, 156);
    color: white;
    transition: 0.5s;
     transform: scale(1.1);
}

.box{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    padding: 20px;
    box-sizing: content-box;
    width: 250px;
    box-shadow: #787777 0px 0px 10px 0px;
    border-radius: 30px;
}

.box h5{
    font-size: 16px;
    color: rgb(3, 56, 100);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
}

.box:hover{
    transform: scale(1.2);
    transition: 0.5s;
    box-shadow: #2a2a2a 0px 0px 20px 0px;
}

.footer{
    text-align: center;
    padding: 20px;
    font-size: 18px;
    color: rgb(255, 255, 255);
   background-color: rgb(3, 56, 100);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 20px;
}

.footer a{
    text-decoration: none;
    color: rgb(255, 255, 255);
    background-color: rgb(3, 56, 100);
}

.footer a:hover{
    color: rgb(0, 0, 0);
    background-color: rgb(176, 167, 156);
    transition: 0.5s;
    transform: scale(1.1);
    border-radius: 12px;
    padding: 5px;
    text-decoration: none;
}

.footer a:active{
    color: rgb(255, 255, 255);
    background-color: rgb(3, 56, 100);
    text-decoration: none;
}

.footer h2{
    font-size: 20px;
    color: rgb(137, 209, 14);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    margin-bottom: 10px;
     background-color: rgb(3, 56, 100);
}

.footer-container {
     display: flex;
    flex-wrap: wrap;
    gap: 100px;
    justify-content: space-around;
   
   
    margin-left: 150px;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    font-size: 20px;
    margin-top: 5px;
    text-align: center;
    padding: 10px;
    font-size: 18px;
    color: rgb(255, 255, 255);
    background-color: rgb(3, 56, 100);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}

.footer p{
    font-size: 18px;
    color: rgb(255, 255, 255);
    background-color: rgb(3, 56, 100);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    margin-top: 10px;
}

.footer-content{
    display: inline-block;
    background-color: rgb(3, 56, 100);
    flex-direction: inline-block;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    margin-top: 20px;
}