* {
    margin: 0;
    padding: 0;
    border: 0;
    color: rgb(255, 255, 255);
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

body {
    height: 100dvh;
    width: 100dvw;
    background-color: rgb(0, 0, 0);
    overflow: hidden;
}

.container {
    height: 100%;
    width: 100%;
    
    flex-wrap: wrap;
    animation: fadeUp 2s;

    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.img-container {
    height: 70dvh;
    width: 100%;
}

.img-container img {
    max-height: 100%;
    max-width: 100%;
}

.content-container {
    width: 100%;
}

.text-container {
    text-align: center;
    font-size: 32pt;
}

.link {
    text-align: center;
    font-size: 14pt;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

.centered {
    display: flex;
    justify-content: center;
    align-items: center;
}


@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15%);
    }

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

@media screen and (width < 740px) {
    .text-container { font-size: 16pt; }
    .link { font-size: 10pt; }
}