@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');

* {
    font-family: 'Poppins', sans-serif;
}
body {
    color: #fff;
    background-color: #141414;
    padding: 10px;
    text-shadow: 1px 1px 2px #000;
}
html {
    scroll-behavior: smooth;
}
nav {
    background-color: red;
    z-index: 10;
    height: 40px;
}
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px) brightness(0.7);
    z-index: -1;
}
video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.info-container {
    position: absolute;
    inset: 0px;
    width: 35rem;
    height: auto;
    min-height: 15rem;
    max-width: 100vw;
    max-height: 21rem;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    flex-direction: column;
}
@media (orientation: portrait) {
    .info-container {
        width: 20rem;
    }
}
.info-container h1 {
    font-size: 28px;
    margin-bottom: 0;
    user-select: none;
}
@keyframes rotateLogo {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.info-container .logo {
    width: 50%;
    margin-top: 1rem;
    max-width: 10rem;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    user-select: none;
    animation: rotateLogo 1.5s ease-in-out;
}
.footer {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: smaller;
    text-align: center;
    user-select: none;
    width: max-content;
}
.links {
    gap: 15px;
    display: flex;
    flex-direction: row;
    position: relative;
}
.links a img {
    display: inline-block;
    text-decoration: none;
    border-radius: 6px;
    width: 35px;
    height: 35px;
    box-shadow: none;
    user-select: none;
    transition: ease-in-out 0.1s;
}
.links a img:hover {
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}
.text-slide {
    transform: scale(1.2);
    display: none;
    font-style: italic;
    user-select: none;
}
