body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat';
}

#main{
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}


#menu{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 2px solid black;
    border-radius: 10px;
    padding: 50px;
    width: 20%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px); 
    position: relative;
    z-index: 2;

}

#title{
    font-size: xx-large;
    animation: float 3s ease-in-out infinite;
    color: #d6f4ff;
}

@keyframes float {
    0% {
    transform: translateY(0);
    }
    50% {
    transform: translateY(-10px);
    }
    100% {
    transform: translateY(0);
    }
}

#links{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

a{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(43, 42, 42, 0.705);
    padding: 10px;
    border-radius: 5px;
    background-color: rgba(56, 56, 56, 0.295);
    color: white;
    text-decoration: none;
    cursor: pointer;
    width: 90%;
    transition: 0.3s;
}

a:hover{
    transform: scale(1.2);
}

#ig:hover{
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

#tik:hover{
    background: linear-gradient(45deg, #25f4ee, #fe2c55);
}

#tw:hover{
    background: linear-gradient(135deg, #9146FF, #772CE8);
}

#sp:hover{
    background: linear-gradient(135deg, #1DB954, #1ed760, #191414);

}

i{
    margin-right: 10px;
}

video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.capa{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1c1c1d;
    opacity: 0.5;
}

img{
    width: 40%;
}


/* MEDIAQUERYS */

@media(max-width: 1024px) {
    #menu {
        width: 30%;
        padding: 40px;
    }
    
    #title {
        font-size: x-large;
    }
}


@media(max-width: 768px) {
    #menu {
        width: 50%;
        padding: 30px;
    }
    
    #title {
        font-size: large;
    }
    
    a {
        padding: 8px;
        font-size: 14px;
    }
    
    img {
        width: 50%;
    }
}


@media(max-width: 480px) {
    #menu {
        width: 80%;
        padding: 20px;
        margin: 20px;
    }
    
    #title {
        font-size: medium;
        margin-bottom: 20px;
    }
    
    #links {
        gap: 8px;
    }
    
    a {
        padding: 12px;
        font-size: 12px;
        width: 100%;
    }
    
    a:hover {
        transform: scale(1.05);
    }
    
    i {
        margin-right: 8px;
    }
    
    img {
        width: 60%;
    }
}


@media(max-width: 320px) {
    #menu {
        width: 90%;
        padding: 15px;
        margin: 10px;
    }
    
    #title {
        font-size: small;
        margin-bottom: 15px;
    }
    
    a {
        padding: 10px;
        font-size: 11px;
    }
    
    img {
        width: 70%;
    }
}