*{
    font-family: 'Outfit', sans-serif;
}
body,html {
    margin: 0;
    padding: 0;
}
* {
    box-sizing: border-box;
}
body{
    background-image: url(https://media.hellomood.co/2022/09/02024547/age-gate-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100%;
    display:flex;
    justify-content:center;
    align-items:center;
}
#container {
    background: #fff;
    display: flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding: 5%;
    border-radius: 12px;
    box-shadow:3px 4px 5px rgba(0,0,0,0.2);
}
img{
    max-width:120px;
}
h1{
    font-weight:600;
    font-size: 2rem;
    text-align:center;
}
h2{
    font-weight:500;
    font-size: 1.4rem;
    text-align:center;
}
h3{
    font-weight:400;
    font-size: 1.15rem;
    text-align:center;
}
button{
    border: 2px solid #000;
    background-color: #000;
    font-size: 1.4rem;
    border-radius: 4px;
    color: #fff;
    cursor:pointer;
    padding: 1% 20%;

}
#buttons{
    display:flex;
    justify-content: center;
    gap:20px;
}
button:hover{
    border: 2px solid #000;
    background-color: #fff;
    color: #000;
}