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

body{
    background-color: rgb(0, 0, 160);
    color: #fff;
    font-family: inter, manrope, sans-serif;
}

.main-section{
    width: 100%;
    height: 100vh;
    padding: 0 2%;
    background-image: url(Images/pexels-wolfgang-1002140-2747446.jpg) ;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.775);
    background-blend-mode: overlay;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.container{
    display: flex;
    flex-direction: column;
}
.main-section a{
    text-decoration: none;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1em;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 16px;
}

.main-section a:hover{
    color: yellow;
    transition: color 0.3s ease;
}

#age-verification p{
    font-size: 1.25em;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: -0.01em;
    color: #fff;
    margin-bottom: 16px;
}

#age-verification button{
    padding: 12px 26px;
    font-size: 1em;
    font-weight: 500;
    letter-spacing: -0.01em;
    width: 96px;
    margin-right: 12px;
    color: #fff;
    background-color: red;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

#age-verification button:hover {
  background-color: red;
  color: white;
}

.hidden {
    display: none;
  }


  @media (max-width: 480px){
    #company-name{
        font-size: 2.5em;
    }

    .main-section{
        padding: 0px 5%;
    }
  }