/*FONT IMPORTS*/
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@500;900&display=swap');

/*GLOBAL CLASSES*/

* {
    box-sizing: border-box;
    margin: 0f;
    padding: 0f;
}

li, a, button{
    font-family: "Exo 2";
    font-weight: 500;
    font-size: 22px;
    color: #000000;
    text-decoration: none;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20%;
}

button{
    padding: 10px 20px;
    background-color: rgb(96, 203, 230);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

button:hover{
    background-color: rgba(100, 224, 255, 0.8);
}

/*CUSTOM CLASSES*/

.products{
    transform: translateY(-20px);
}

.sticky{
    position: fixed;
    top: 0;
    width: 101%;
    height: 150px;
    background-color: rgb(176, 176, 176);
    margin: 0px -10px;
}

.footer{
    position: fixed;
    transform: translateX(-px);
    width: 101%;
    margin: 0px -10px;
    bottom:0;
    list-style: none;
    align-items: center;
    text-align: center;
    background-color: rgb(176, 176, 176);
}

.foot_links{
    list-style: none;
}

.foot_links li{
    display: inline-block;
    padding: 0px 20px;
}

.logo{
    cursor: pointer;
    height: 100px;
    transform: translateX(-50px);
}

.nav_links {
    list-style: none;
}

.nav_links li{
    display: inline-block;
    padding: 0px 20px;
    transform: translateX(-55px);
}

.nav_links li a {
    transition: all 0.4s ease 0s;
}

.nav_links li a:hover {
    color:  #000000;
    background-color: rgba(106, 225, 255, 0.8);
    border-radius: 10px;
    padding: 10px 40px;
}


.content{
    height: fit-content;
    text-align: center;
    transform: translateY(150px);
}
.headline{
    color: rgb(255, 255, 255);
    background-color: rgb(66, 192, 255);
    font-size: 50px;
    font-family: 'Exo 2';
}
.introduction{
    color: white;
    font-size: 24px;
    font-family: 'Exo 2';
    background-color: rgb(0, 60, 91);
}