@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} 

body {
    font-family: Arial, sans-serif;
    background-color: #F4F1EC;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title {
    text-align: center;
    margin: 20px 0;
    font-size: 4em;
    color: #1A1A1A;
    font-family: Playfair Display, serif;
}

.subtitle {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.5em;
    color: #1A1A1A;
    font-family: Montserrat;
    font-weight: 300;
}

.description {
    max-width: 800px;
    margin: 0 auto 30px auto;
    padding: 0 20px;
    font-size: 1.5em;
    color: #F98513;
    font-family: Playfair Display, serif;
}

/* .twitter-icon at the bottom right corner */
.twitter-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 10px 10px 10px 10px;
    background-color: transparent;
}

.twitter-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.twitter-icon:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}
