
ul {
    list-style: none;
}
a {
    text-decoration: none;  
    color: inherit;
}
body {
    font-family:"Gloock", sans-serif;
    background-color: #f6f7eb;

}
.header{
    background-color: rgba(255, 255,255,0.7);
    border-bottom: 1px solid, rgb(212,217,219);
    position: fixed;
    backdrop-filter: blur(6px);
    width: 100%;
    border-radius: 25px;
}
.header_content{
  display:flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 35px;  
  min-height: 60px;
}
.logo{
    font-size: 30px;
    font-weight:500;
    letter-spacing: 1.5px;
}
.nav_list{
display: flex;
column-gap: 40px;
}
.nav_link{
color:#393e41;
font-size: 25px;
font-weight: 500;
}
.nav_link:hover{
    color: #000000;
}
.button{
background-color: #e94f37;
font-size: 18px;
padding: 10px 15px;
border-radius: 10000px;
text-transform: uppercase;
}
.button:hover{
    background-color: #ed6a5a;
}

.footer {
    display:flex;
    align-items: center;
    justify-content: center;
    padding: 0 35px;  
    min-height: 10vh;
    width:100%;
    background-color: #e94f37;
    border-left:0;
    border-right: 0;
    margin-top:auto;

}
.footer_content { 
    display: flex;
    justify-content:space-between;
    align-items: center;
    column-gap: 20px;
    text-decoration: none;
    padding: 20px auto;
}
.footer_item{
    color:#f6f7eb;
    font-size: 20px;
    font-weight: 300;
}
