a
{
    text-decoration: none;
    cursor: pointer;
    color: white;
}
body
{
    margin: 0px;
    background-color: #00040A;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
}

.navbar
{
    height: 60px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    padding-bottom: 10px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;

    @media (max-width: 568px) {
        height: auto;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
            
        }
    
}

.navbar ul
{
    display: flex;
    justify-content: space-between;
    margin: 0 50px;
    flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;

    
    @media (max-width: 568px) {
    justify-content: center;
    margin: 0;
    width: 90%;
        
    }
}

.navbar-left{
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 400px;
    gap: 2rem;
    font-size: 1.2rem;
@media (max-width:568px) {
    gap: 1rem;
    width: 90%;
    flex-wrap: wrap;
}
}


.navbar-right{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    width: 100%;
    max-width: 200px;
}

.navbar ul li
{
    display: inline;
    margin-top: 5px;
}
.navbar ul li a
{
    font-weight: 300;
}
.navbar ul li a:hover
{
    font-weight: 600;
}

.nav-btn
{
   height: 30px;
   width: 100px;
   background-color: #00040A;
   text-align: center;
   color: white;
   float: right;
   border-radius: 20px;
   border-style: solid;
   border-color: white;
   padding: 5px;
   cursor: pointer;
   transition: 200ms;
   font-family: sans-serif;
}
.nav-btn:hover
{
    box-shadow: 0px 0px 5px white;
    background-color: #0d213f;
}
.login
{
    float: right;
    margin:  0px 30px 0px 30px;
}

.logo
{
    float: left;
    transform: rotateZ(45deg);
    font-size: 20px;
}
.logo:hover
{
    float: left;
    transform: rotateZ(45deg);
    font-size: 20px;
    animation: logo-animation 1s;
}
@keyframes logo-animation
{ 
    0%,100%
    {
        transform: rotateZ(45deg);
    }
    50%
    {
        transform: rotateZ(360deg);
    }
}
.display
{
    display: flex;
    justify-content: center;
    align-items:center;
    flex-wrap: wrap;
    width: 100%;
    gap: 3rem;
    margin: 100px 0;
    
}

.display h1
{
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    background-color: #00040A;
    align-items: center;
    margin: 0 0 0 0;
    
}    

.display-btn
{
  
   height: 50px;
   width: 100px;
   background-color: #00040A;
   text-align: center;
   color: white;
   border-radius: 20px;
   border-style: solid;
   border-color: white;
   padding: 5px;
   margin: 50px 0 0 0;
   cursor: pointer;
   transition: 200ms;
   font-family: sans-serif;
}
.display-btn:hover
{
  
   height: 60px;
   width: 120px;
   background-color: #010814;
   text-align: center;
   color: white;
   border-radius: 20px;
   border-style: solid;
   border-color: white;
   
   margin: 50px 0 0 0;
   cursor: pointer;
    
}
.display-content
{
    display: flex;
    flex-direction: column;
    background-color: #00040A;
    align-items: center;
    justify-content: center;
    width: 500px;
    text-align: center;
    padding: 15px;
}
.display-img
{
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    order: 2;
}
.about
{
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-color: white;
    width: 100%;
    margin: 80px 0;
    align-items: center;
    justify-content: center;
    gap: 3rem;

}
.about-img
{
    width: 100%;
    max-width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    
}
.about-img img
{
    width: 100%;
    max-width: 400px;
   
    
}
.about-content 
{
    text-align: center;
    width: 100%;
    max-width: 400px;
    
}
.info
{
    font-family: 'Poppins', sans-serif;
    color: white;
    margin: 30px;
    display: flex;
    align-items: center;
    font-size: 18px;
}
.info span
{
    margin-left: 15px;
}
.endereco
{
    font-family: 'Poppins', sans-serif;
    color: white;
    margin-left: 30px;
    font-size: 12px;
}
.endereco p
{
    margin: 5px;
}
.footer
{
    margin: auto;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;

   
}

footer{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: auto;
}