*
{
    font-family: "Baloo Bhai 2";
}

#pop-up
{
    display: block;
}

 body{
    margin: 0;
    background: url("../imgs/mbg.png") no-repeat center center fixed;
    background-size: cover;
    overflow: hidden;
    font-family: Arial, sans-serif;
    color: #fff;
    background-attachment: fixed;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(
        to left,
        rgba(0,0,0,0.5) 0%,
        rgba(0,0,0,0.5) 33.35%,
        rgba(0,0,0,0.3) 33.35%,
        rgba(0,0,0,0.3) 66.65%,
        rgba(0,0,0,0.5) 66.65%,
        rgba(0,0,0,0.5) 100%
    );
}

.creditos {
    position: absolute;
    width: 100%;
    text-align: center;
    transform: translateY(100%);
}

h1 {
    font-size: 48px;
    margin-bottom: 40px;
}

h2 {
    margin: 30px 0 10px;
    font-size: 26px;
    color: gold;
}

p {
    margin: 4px 0;
    font-size: 20px;
    line-height: 40px;
}

.footer {
    position: fixed;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 110px;
}

.footer-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    top: 0;
    left: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 40px 0 40px;
    box-sizing: border-box;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-family: "Baloo Bhai 2", sans-serif;
    font-weight: 700;
    font-size: 19px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-logo img {
    height: 70px;
    width: auto;
    display: block;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 99;
}

.footer-socials a img {
    height: 22px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-socials a:hover img {
    opacity: 0.75;
}