body {
    margin: 0;
    padding: 0;
    background-color: #181818;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 85vh;
    font-family: "Delicious Handrawn", sans-serif;
    font-optical-sizing: auto;
    color: #f0f0f0;
}

.container {
    text-align: center;
}

.main {
    font-size: 6.55em;
    /*color: #63d0ff;*/
    background: -webkit-linear-gradient(1deg,rgba(99, 208, 255, 1) 0%, rgba(132, 130, 255, 1) 100%); 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.clickable-text {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2em;
    font-family: "Montserrat", sans-serif;
    transition: color 0.3s ease;
}

.clickable-text:hover {
    text-shadow: 0 0 0px rgba(0, 0, 0,0), 0 0 25px rgba(255,255,40,1);
    color: #ffff33;
}

/* ------------------------------------------- */
/* Media Query for Mobile Devices */
/* ------------------------------------------- */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5em; /* Smaller size for screens up to 768px wide */
    }

    .clickable-text {
        font-size: 1.15em; /* Slightly smaller links for mobile */
    }
}
