/* @import url('https://fonts.googleapis.com/css2?family=Playball&display=swap'); */

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


body {
    padding: 0;
    margin: 0;
    /* font-family: 'Cormorant Garamond', serif; */
    /* font-family: 'Montserrat', sans-serif; */
    font-family: 'Playfair Display', serif;
    /* font-family: 'Playball', cursive; */
    font-weight: bold;
    letter-spacing: 10%;
    color: #eee;
}

#mainWrapper {
    position: relative;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.80)), url(../img/background.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#main {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#main {
    max-width: 920px;
    width: 100%;
    line-height: 1.4;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
}

#main h1 {
    font-size: 46px;
    text-shadow: 2px 2px 0 #000;
    text-transform: uppercase;
    margin: 0px;
}

#main p {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 18px;
    text-shadow: 1px 1px 0 #000;
    margin-top: 25px;
    margin-bottom: 25px;
    text-transform: capitalize;
}

.facebook-btn {
    display: inline-flex;
    align-items: center;
    background-color: #1877F2;
    /* Official Facebook Blue */
    color: #eee;
    text-decoration: none;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s ease, transform 0.1s ease;
    cursor: pointer;
    text-shadow: 2px 2px 0 #000;
}

/* Accent box around the 'f' logo */
.facebook-btn .fb-icon {
    background-color: rgba(0, 0, 0, 0.08);
    padding: 12px 18px;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

/* Text padding */
.facebook-btn .fb-text {
    padding: 0 20px;
}

/* Hover and active states */
.facebook-btn:hover {
    background-color: #166FE5;
    /* Slightly darker shade */
}

.facebook-btn:active {
    transform: scale(0.98);
}

@media only screen and (max-width: 480px) {
    #main h2 {
        font-size: 26px;
    }
}