* {
    box-sizing: border-box;
    margin: 0;
    font-family: 'Playfair Display', serif;
    -webkit-tap-highlight-color: transparent;
    transition: all 75ms ease-in;
}

:root {
    --clr-white: #ffffff;
    --clr-beige: #F6F4F0;
    --clr-gray: #A29C94;
    --clr-dark-gray: #8b857c;
}

body {
    background-color: var(--clr-beige);
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 32px 16px;
    flex-direction: column;
}

h1 {
    text-align: center;
    font-size: 40px;
    font-style: italic;
}

span {
    text-align: center;
    font-size: 18px;
}

button {
    border: none;
    background: unset;
    cursor: pointer;
    padding: 0;
}

p {
    margin-top: 12px;
}

.mt-16 {
    margin-top: 16px;
}

header {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.logo {
    height: 150px;
}

.content-box {
    background-color: var(--clr-gray);
    color: var(--clr-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 32px 32px 24px 32px;
    border-radius: 16px;
    max-width: 600px;
    box-shadow: 0px 0px 16px 6px #0000000a;
    position: relative;
    margin: auto 0;
}

.btn-container {
    display: flex;
    gap: 24px;
    width: 100%;
    justify-content: center;
}

.btn-container button {
    color: var(--clr-dark-gray);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    font-weight: 600;
    height: 60px;
    width: 200px;
}

.btn-under {
    background-color: #3A3935 !important;
    color: var(--clr-white) !important;
}

.btn-under:hover {
    background-color: #2e2d2a !important;
    box-shadow: 0px 4px 4px 0px #00000040;
}

.btn-over {
    background-color: rgba(255, 255, 255, 0.95);
}

.btn-over:hover {
    background-color: var(--clr-white);
    box-shadow: 0px 4px 4px 0px #00000040;
}

.your-code {
    font-size: 40px;
    font-weight: bold;
    border: 2px solid var(--clr-white);
    padding: 8px 24px;
    border-radius: 12px;
}

.social-media {
    margin-top: 6px;
}

.social-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.instagram {
    background-image: url(../assets/icons/instagram.svg);
}

.facebook {
    margin-right: 20px;
    background-image: url(../assets/icons/facebook.svg);
    background-size: contain;
}

.social-icon:hover {
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.4));
}

.go-back {
    position: absolute;
    left: 16px;
    top: 16px;
    background-image: url(../assets/icons/arrow-left.svg);
    min-width: 24px;
    min-height: 24px;
    display: inline-block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.go-back:hover {
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.4));
    scale: 1.1;
}

@media (max-width: 600px) {
    .content-box {
        width: 100%;
    }
    .btn-container {
        flex-direction: column;
        align-items: center;
    }
    .btn-container button {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 450px) {
    .content-box {
        gap: 16px;
    }
    .logo {
        height: 120px;
    }
    h1 {
        font-size: 32px;
    }
    span {
        font-size: 16px;
    }
    .btn-container button {
        font-size: 16px;
    }
    .your-code {
        font-size: 32px;
    }
    .btn-container {
        gap:  16px;
        margin-top: unset;
    }
}



