@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --off-white: #f8f7f1;
    --black: #333;
}

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

body {
    width: 100%;
    height: 100vh;
    background: #333;
    color: var(--off-white);
    overflow: hidden;

    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#sect1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;

    h1 {}

    #lock {
        aspect-ratio: calc(1 / 1);
        padding: 18px;
        display: flex;
        align-items: center;
        justify-content: center;

        background: #bf7c4f;
        color: var(--black);
        border-radius: 50%;
        margin-bottom: 8px;

        font-size: 32px;
    }
}

#sect2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 16px;

    p {
        margin-top: 12px;
        letter-spacing: 0.1rem;
    }

    #uc {
        font-weight: 400;
    }
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.social {
    color: #333;
    font-size: 24px;
    border: 1px solid #333;
    border-radius: 50%;
    padding: 6px;
}

@media only screen and (max-width: 600px) {
    #uc {
        font-size: 1.6rem;
        letter-spacing: 0.4rem;
    }
}

@media only screen and (min-width: 600px) {
    #uc {
        font-size: 3rem;
        letter-spacing: 0.6rem;
    }
}