* { padding: 0; margin: 0; }

body {
    font-family: "Urbanist", sans-serif;
    overflow: hidden;
}

nav {
    padding: 16px;
}

footer {
    background-color: #1a1a1a;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    text-align: center;
}

footer p {
    font-size: 10.5pt;
    color: #a6a6a6;
}

.logo-u {
    position: absolute;
    bottom: 50%;
    right: 50%;
    left: 50%;
    top: 50%;
    font-size: 48px;
    color: #fff;
    animation: fadeColors 1200ms infinite alternate;
}

.branding {
    font-family: "Belleza", sans-serif;
    font-size: 18pt;
}

.banner {
    background-color: #1a1a1a;
    color: #fff;
    line-height: 1.25;
    font-size: 10.5pt;
    text-align: center;
    padding: 12px 16px;
}

.hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('./images/mobile/athe.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -999;
}

.card {
    position: absolute;
    bottom: 64px;
    right: 0;
    left: 0;
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #dedede;
    padding: 20px;
    margin: 24px;
}

@media screen and (min-width: 640px) {
    nav { text-align: center; }
    .branding { font-size: 24pt; }
    .logo-u { visibility: hidden; }
    .card { width: 300px; }
    .hero { background-image: url('./images/desktop/huxley.jpg'); }
}

@keyframes fadeColors {
    from { color: #fff; }
    to { color: rgb(233, 65, 105); }
}