body {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#background {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    background: url(../img/wallpaper-aneq.png) no-repeat center center fixed;
    background-size: cover;
}

.container-fluid.panel {
    background: rgba(0,0,0,0.5);
}

.container-fluid.panel .row {
    padding-top: 10vh;
    padding-bottom: 10vh;
}

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

img#logo {
    max-height: 10vh;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    img#logo {
        max-width: 50vw;
    }
}

@media (max-width: 576px) {
    img#logo {
        max-width: 70vw;
    }
}

h3 {
    margin-bottom: 20px;
}

p.no-margin {
    margin: 0;
}

#info :nth-child(1) {
    font-size: 2rem;
    font-weight: bold;
}

#info :nth-child(2) {
    font-size: 1.5rem;
}

#info :nth-child(3) {
    font-size: 1.25rem;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 50px;
    transition: background-image 0.3s, background-color 0.3s, color 0.3s;
}

.btn-social i {
    margin-right: 0.5rem;
}

.btn-social:hover {
    background-color: #fff;
    color: #000;
}

.btn-outline-light {
    color: #fff;
    border-color: #fff;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: #000;
}

.btn-social:hover:has(i.fa-instagram) {
    color: #fff;
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    transition: all 0.45s;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.5);
    padding: 1rem 0;
    text-align: center;
    text-shadow: 1px 1px 3px #000000;
}
