footer {
    background-color: #1E293B;
    position:fixed;
    width:100%;
    bottom:0px;
    z-index: 10;
}

footer a {
    text-decoration: none;
    color: #38BDF8;
    font-size: 1rem;
    transition: color 0.3s ease;
}

body {
    padding-bottom: 14vh;
}

.social-links {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: .5rem;
}

.social-links li {
    padding: 0.5rem;
}

.button {
    padding: 0.6rem 1.5rem;
    border: 2px solid #38BDF8;
    border-radius: .5vh;
    color: #38BDF8;
    background-color: transparent;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background-color: #2c3b4e;
}

.social-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

@media screen and (max-width: 768px) {
    .button {
        padding: 0.1rem .1rem;
    }
}