@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');


*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  background: #24252A;
}

html li a, button{
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #edf0f1;
    text-decoration: none;
    cursor: pointer;
}

header{
    display: flex;
    justify-content: right;
    align-items: center;
    padding: 30px 10%;
}

.logo{
    cursor: pointer;
    margin-right: auto;
    width: 80px;
}

.nav_links{
    list-style: none;

}

.nav_links li{
    display: inline-block;
    padding: 0px 20px;
}

.nav_links li a{
    transition: all 0.3s ease 0s;
}

.nav_links li a:hover{
    transition: all 0.3s ease 0s;
    color: rgb(202, 62, 27);
}

.contact-btn{
    padding: 9px 25px;
    background-color: rgb(202, 62, 27);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    margin-left: 20px;
}

.contact-btn:hover{
    background-color: rgba(202, 62, 27, 0.8);
} 

hr{
    display: none;
}

/* end navbar */

.content{
    color: #edf0f1;
    display: flex;
    flex-direction: column;
    margin: auto;
    margin-top: 30px;
}

.text{
    max-width: 80%;
    justify-content: center;
    text-align: center;
    margin: auto;
}

.content h1{
    text-align: center;
    text-transform: uppercase;
    font-size: 35px;
}

.content p{
    margin-bottom: 40px;
    margin-top: 20px;
    text-align: center;
    font-size: 20px;
}

.content a{
    text-decoration: none;
    color: #edf0f1;
}

.images{
    width: 50%;
    margin: auto;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0px 0px 3px 3px black;
}


.highlited{
    font-weight: bolder;
}

.highlitedbottom{
    color: rgb(202, 62, 27);

}


@media screen and (max-width: 694px){

    .images{
        width: 90%;
        margin: auto;
    }

    html li, .link, button{
        font-family: "Montserrat", sans-serif;
        font-weight: 500;
        font-size: 14px;
        color: #edf0f1;
        text-decoration: none;
    }
    .nav_links li{
        display: inline-block;
        padding: 0px 10px;
        margin-left: 20px;
    }

}
@media screen and (max-width: 399px){
    header{
        display: block;
        text-align: center;
        margin: 0;
        padding: 0;
    }

    .logo{
        width: 100px;
        margin-top: 10px;
        margin-bottom: 15px;
    }

    .nav_links li{
        margin: 0;
    }

    .contact-btn{
        margin-top: 15px;
        margin-bottom: 15px;
    }

    hr{
        display: block;
    }
}
