/* Styling using Jost font from Google Fonts */
body {
    margin: 0;
    font-family: 'Jost', sans-serif;
    background-color: #EAE4CE;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow-x: scroll !important;
    overflow-y: hidden !important;
}

.container {
    max-width: 600px;
    padding: 20px;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    color: black;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 500;
    color: black;
    margin-bottom: 20px;
}

.description {
    font-size: 1rem;
    font-weight: 400;
    color: black;
    margin-bottom: 40px;
}

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

.social-icons img {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

@media (max-width: 600px) {
    body {
        min-height: auto;
        padding: 8px;
        position: fixed; 
        top: 0; 
        bottom: 0; 
    }

    h1 {
        font-size: 2.5rem;
    }

    .description {
        font-size: 0.9rem;
    }

    .social-icons img {
        width: 30px;
        height: 30px;
    }
}