:root {
    --primary: #E30613;
    --secondary: #CBFF3D;
    --black: #000000;
    --gray-700: #8282825d;
}

body {
    font-family: 'Halenoir';
    font-size: 1.5rem;
    line-height: 2.25rem;
    color: var(--black);
}

body *,
body *::before,
body *::after {
    box-sizing: border-box;
}

.wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 34rem;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    padding: 2rem 1.5rem;
}

.logo-link {
    display: block;
    margin-bottom: 5.5rem;
}

.logo-link img {
    width: min(21rem, 80%);
}

.table tr {
    border-bottom: 1px solid var(--gray-700);
}

.table tr td {
    padding: 0.75rem 0;
}

.table tr td.table__label {
    font-family: 'Syne';
    line-height: 1.75rem;
    color: var(--primary);
    padding-right: 1rem;
    font-weight: 500;
}

.button__wrapper {
    margin-top: 2.5rem;
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.875rem;
    padding: 0.5rem 1rem;
    border: 0;
    border-radius: 1.5rem;
    overflow: hidden;
    white-space: nowrap;
    background: var(--secondary);
    font-size: 1.5rem;
    color: var(--black);
    font-weight: 700;
    font-family: 'Space Grotesk';
    line-height: 1;
    text-transform: uppercase;
}

.button:hover .button__label,
.button:focus-visible .button__label {
    transform: translateY(-2.5rem);
}

.button:hover .button__hover,
.button:focus-visible .button__hover {
    transform: translateY(0);
}

.button__label,
.button__hover {
    transition: transform 150ms;
}

.button__hover {
    position: absolute;
    transform: translateY(2.5rem);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
}

.side-visual {
    position: fixed;
    top: 0;
    right: 0;
    display: block;
    width: 50%;
    height: 100vh;
}

.side-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

@media (max-width: 1280px) {
    .content {
        width: 67%;
    }

    .side-visual {
        width: 33%;
    }
}

@media (max-width: 1024px) {
    .logo-link {
        margin-bottom: 4rem;
    }

    .content {
        width: 100%;
    }

    .side-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .logo-link {
        margin-bottom: 2rem;
    }

    .table tr {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }

    .table tr td.table__label {
        padding-bottom: 0;
        padding-right: 0;
    }

    .table tr td.table__label + td {
        padding-top: 0.5rem;
    }

    .button__wrapper {
        margin-top: 2rem;
    }
}
