* {
    font-family: "MiFuente";
    font-weight: 200;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#videofondo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

span {
    color: #020202;
    display: block;
    padding-top: 15px;
}

a {
    text-decoration: none;
    color: #fff;
}

#iconos {
    display: flex;
    align-items: center;
    justify-content: center;
}

#iconos * {
    margin: 10px;
}

header {
    position: fixed;
    display: flex;
    justify-content: space-around;
    align-items: center;
    top: 0;
    left: 0;
    right: 0;
    background: #00f6ac;
    color: #020202;
    text-align: center;
    padding: 15px;
    z-index: 1000;
}

footer {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    bottom: 0;
    left: 0;
    right: 0;
    background: #020202;
    color: #00f6ac;
    text-align: center;
    padding: 15px;
    z-index: 1000;
}

.card span {
    position: relative;
    top: -15px;
    z-index: 2;
}

.card:hover {
    transform: scale(1.05);
}
.card:hover .overlay {
    opacity: 1;
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    transform: rotate(-45deg);
    transition: all 0.5s ease;
    opacity: 0;
}
.card:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translateY(100%);
}
.overlay {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 7px;
    z-index: 1;
    background: #00f6ac;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}