*{
    margin: 0px;
    padding: 0px;
}

body{
    background-color: royalblue;
    width: 100%;
    font-family: "Poppins", sans-serif;
    font-style: normal;
}

.navbar{
    width: 100%;
    background-color: black;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.nav-link{
    display: flex;
    column-gap: 20px;
}

.nav-link a{
    text-decoration: none;
    color: white;
}

.nav-link a:hover{
    text-decoration: underline;
}

.navbar-menu{
    display: none;
    right: 40%;
}

.side-navbar{
    background-color: #1d232c;
    color: white;
    width: 30%;
    height: 100%;
    position: fixed;
    top: 0;
    left: -60%;
    padding-top: 60px;
    padding: 20px;
    transition: 4s;
    overflow-y: hidden;
    z-index: 1000;
}

.sidenav-links{
    margin-bottom: 30px;
}

.sidenav-links a{
    text-decoration: none;
    color: white;
}

.sidenav-links a:hover{
    text-decoration: underline;
}

.header{
    display: flex;
    gap: 50px;
    padding: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.header button{
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px; 
    margin-top: 10px;
    background-color: yellow;
    color: black;
    cursor: pointer;
    border-radius: 10px;
    border: solid black 3px;
}

.header a{
    text-decoration: none;
    color: black;
}

.header a:hover{
    text-decoration: underline;
}

.header img{
    display: flex;
    height: 400px;
    width: 600px;
    border: solid black 3px;
    border-radius: 15px;
    animation: pulse 2s infinite;
}

.container{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 25px; 
    column-gap: 30px;
    gap: 30px;
}

.box{
    position: relative;
    flex-basis: 20%;
}

.box img{
    height: 350px;
    width: 350px;
    border: solid black 3px;
    border-radius: 15px;
}

.box p{
    margin: 10px;
    font-size: 20px;
}

.news{
    background-color: royalblue;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news button{
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px; 
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: red;
    border-radius: 10px;
    border: solid black 3px;
}

.news a{
    text-decoration: none;
    color: black
}

.news a:hover{
    text-decoration: underline;
}

.footer{
    padding: 20px;
    background-color: #1d232c;
    color: white;
    width: 100%;
    border: solid black 4px;
    flex-wrap: wrap;
}

.image{
    background-color: royalblue;
    display: flex;
    gap: 50px;
    padding: 50px;
    justify-content: center;
}

.image p{
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.image img{
    height: 275px;
    width: 250px;
    border: solid black 3px;
    border-radius: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.image button{
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px; 
    margin-top: 10px;
    background-color: yellow;
    color: black;
    cursor: pointer;
    border-radius: 10px;
    border: solid black 3px;
}

.image a{
    text-decoration: none;
    color: black;
    cursor: pointer;
}

.image a:hover, a:focus{
    text-decoration: underline;
}

.one{
    padding-top: 5px;
    padding-left: 20px;
    padding-bottom: 5px;
    color: black;
}

.location{
    display: flex;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 3px;
    font-size: 20px;
}

a.two{
    text-decoration: none;
    color: black;
    cursor: pointer;
}

a.two:hover a.two:focus{
    text-decoration: underline;
}

.about{
    display: block;
    flex-direction: row;
    justify-content: space-around;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 3px;
}

.about h1,p{
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 25px;
}

@media screen and (max-width: 770px){
    .navbar-menu{
        display: block;
    }
    .nav-link{
        display: none;
    }
    .header img{
        display: none;
    }  
    .about{
        flex-direction: column;
    }
}

@keyframes pulse{
    0%, 100%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.1);
    }
}