@import url('https://fonts.googleapis.com/css2?family=Itim&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

section{
    width: 100vw;
    height: 100vh;
    background-color: #000000cb;
    backdrop-filter: blur(15px);
    z-index: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

article{
    padding-block: 64px;
    display: flex;
    flex-direction: column;
    justify-content:space-between;
    align-items: center;
    height: 100%;
}

button{
    display: flex;
    gap: 32px;
    align-items: center;
    width: 350px;
    height: 60px;
    border-radius: 10px;
    background-color: #DBB63D;
    color: #41340C;
    border: none;
    margin-top: 8px;
    padding-inline: 16px;
    font-size: 18px;
    cursor: pointer;
    transition-duration: 500ms;
}

button:hover{
    background-color: #ad9031;
    transform: scale(0.95);
}

a{
    text-decoration: none;
}

h1{
    color: white;
    font-family:'Itim';
    font-size: 40px;
    text-align: center;
}

article > div > p{
    color: white;
    font-family: 'Calibri';
    max-width: 300px;
    text-align: center;
    margin-top: 8px;
    font-size: 18px;
}