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

body {
    background-image: url(/bg.png);
    background-size: cover;
}

body ::selection {
    background-color: #ffeedd;
    color: #ffffff;
}

main {
    min-height: 100vh;
    position: relative;
}

.container-div {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.fade-in-bottom {
    position: relative;
    overflow: hidden;
    flex-grow: 1;
    animation: fadeInFromBottom 0.5s ease-out forwards;
}

.inner-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 80rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    height: 100%;
}

@media (min-width: 1024px) {
    .inner-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.flex-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.text-center {
    text-align: center;
    opacity: 1;
    transform: none;
}

.logo {
    height: 8rem;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    user-select: none;
}

@media (min-width: 640px) {
    .logo {
        height: 10rem;
    }
}

@media (min-width: 1024px) {
    .logo {
        height: 12rem;
    }
}

.links-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.link {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 600;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    color: #ffeedd;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    position: relative;
    text-decoration: none;
}

.link:hover {
    color: #ddccaa;
}

.link-highlight {
    position: absolute;
    inset: -0.5rem -1rem;
    border-width: 1px;
    border-color: transparent;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.link:hover .link-highlight {
    border-color: #374151;
}

@keyframes fadeInFromBottom {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}