@font-face {
    font-family: 'Sofia Sans';
    src: local('Sofia Sans'), url(./font/SofiaSans-Regular.woff2) format('woff2'),
        url(./font/SofiaSans-Regular.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    overscroll-behavior: none;
    background-color: #202020;
}

.links-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100dvh;
}

.watch,
.request {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    font-family: 'Sofia Sans', sans-serif;
    font-size: 3rem;
    text-decoration: none;
    color: #ededed;
}

.watch:hover,
.request:hover {
    text-decoration: underline;
}

.icon,
.text {
    text-shadow: 0 0 1px #000;
}

.icon {
    width: 2.5em;
}

.watch {
    background-color: #202020;
}

.request {
    background-image: linear-gradient(to bottom right, #4f46e5, #9333ea);
}

@media (orientation: landscape) {
    .links-container {
        flex-direction: row;
    }
}
