.btn {
    display: inline-flex;
    margin-top: 20px;
    padding: 15px 35px;
    font-size: 1.5em;
    color: white;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease-in-out;
}

.btn:hover {
    transform: scale(1.05) rotate(5deg);
    background: linear-gradient(90deg, #2575fc, #6a11cb);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 0;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    text-decoration: none;
}

.social-links img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.social-links img:hover {
    transform: scale(1.2);
}

.fam24{
    position: relative;
    top: -2vw;
    font-size: 1.5em;
}

.content {
    position: relative;
    text-align: center;
    z-index: 2;
    max-width: 1200px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    top: 15.0vh;
}
