@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;800&display=swap");

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Arial', sans-serif;
    background-color: #181716;
    color: white;
}

.centered-container {
    text-align: center;
    width: 100%;
}

.description {
    margin: 0.3em 0;
    font-size: 1.2em;
    opacity: 0.9;
}

.top-text{
    color: #fc28a7;
    letter-spacing: 1vh;
    font-size: 1.8em;
    margin: 1.5em 0;
    opacity: 0.9;
}

h1 {
    font-size: 8em;
    font-weight: 100;
}

button {
    margin-top: 4em;
    font-size: 1.5em;
    padding: 10px 20px;
    background-color: transparent;
    border-style: solid;
    border-width: 4px; 
    border-color: #fc28a7; 
    opacity: 0.9;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: transparent;
}


@media (max-width: 1024px) {
    .centered-container {
        width: 95%; /* Slightly more width for smaller screens */
    }

    h1 {
        font-size: 2em; /* Smaller font size for smaller screens */
    }
}

@media (max-width: 768px) {
    body {
        flex-direction: column; /* Stack elements vertically on small screens */
    }

    p {
        font-size: 0.5em; /* Smaller paragraph text on mobile */
    }

    .description{
        font-size: 1em;
    }

    button {
        font-size: 1em; /* Smaller button text */
    }
    .image {
        max-width: 100%; /* Ensures image is not larger than its container */
        height: auto; /* Maintains aspect ratio */
    }    
}

@media (max-width: 480px) {
    body {
        flex-direction: column; /* Stack elements vertically on small screens */
    }

    p {
        font-size: 0.5em; /* Smaller paragraph text on mobile */
    }

    button {
        font-size: 0.5em; /* Smaller button text */
    }
    
    .description{
        font-size: 0.5em;
    }

    .image {
        max-width: 100%; /* Ensures image is not larger than its container */
        height: auto; /* Maintains aspect ratio */
    }    
}
