*{
    padding: 0%;
    margin: 0%;

}

body{
    height: 100vh;
    width: 100%;
    background-image:linear-gradient( rgba(0,0,0,0.7),  rgba(0,0,0,0.7)),url(images/gh8.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
header{
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    border-bottom: 2px solid black;
    position: fixed;
    width: 100%;
  
}


.logo {
  text-decoration: none;
  color: white;
  padding: 1rem;
  font-weight: 900;
  font-size: 1.6rem;
}


main{
  display: flex;
    position: absolute;
    top:75%;
    left: 25%;
}

main a{
  text-decoration: none;
  font-size: 1rem;
    margin: 1rem;
    color: white;
    text-transform: uppercase;
    background-color: red;
    padding: 1rem;
    border-radius: 20px;
}
main a:hover{
background-color: blue;
padding: 2rem;
}


main a:active{
background-color: blue;
padding: 2rem;
}

@media(max-width:375px){
  .clia{
    width: 375px;
  }
  main{
    left: 16%;
  }
}

@media(max-width:320px){
 .clia{
    width: 320px;
  }

}



@media(max-width:500px){
main a{
font-size: 0.7rem;
}
   
}