body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Cinzel', sans-serif;
}

body {
    background-image: url('https://i.imgur.com/T8yqMXI.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

.social-buttons {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0; /* Add some padding at the bottom */
}

.social-buttons .btn {
    text-decoration: none;
    color: #FFF; /* Icon color */
    background-color: transparent; /* Makes the background transparent */
    padding: 10px;
    margin: 5px;
    border-radius: 50%; /* Creates a circular shape */
    display: inline-block;
    transition: transform 0.3s, color 0.3s;
}

.social-buttons .btn:hover {
    transform: scale(1.1); /* Slightly enlarges the icon on hover */
    color: #ccc; /* Changes icon color on hover */
}

/* Icon sizes */
.social-buttons .btn i {
    font-size: 24px; /* Adjust icon size */
}

.twitter {
    background-color: #1DA1F2;
}

.facebook {
    background-color: #4267B2;
}

.instagram {
    background-color: #E1306C;
}

.social-buttons .btn:hover {
    opacity: 0.9;
}

@media screen and (max-width: 800px) {
    h2 {
        font-size: 30;
        margin: 0 0 20px 0;
    }

    p {
        font-size: 20;
        margin: 0;
        padding: 0;
    }
}

@media screen and (min-width: 801px) {
    h2 {
        font-size: 50px; /* Adjusted size */
        margin: 0 0 20px 0;
    }

    p {
        font-size: 40px;
        margin: 0;
        padding: 0;
    }
}


