body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5dc; /* Off-white natural cream color */
    overflow: hidden;
    font-family: 'Roboto', sans-serif; /* Apply the Roboto font */
}

.container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hello-container {
    position: absolute;
    top: -40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    width: 150px;
    height: 40px;
    border-radius: 5px;
    background-color: #f5f5dc; /* Off-white natural cream color */
    border: 1px solid #ae1e1e; /* Underline */
}

hr {
    border: 0;
    height: 1px;
    background-color: #ae1e1e;
}

a:hover hr {
    background-color: #f5f5dc;
}

.hello-text {
    font-size: 12px;
    color: #ae1e1e;
    margin-bottom: 0; /* Space between text and angled line */
    padding: 11px;
    transition: opacity 0.5s;
}

.underline {
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 2px solid transparent;
    border-top: 3px solid #ae1e1e;
    transform: rotate(250deg);
    position: relative;
    top: 0;
}

.center-image {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

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

.button {
    background-color: #f5f5dc;
    color: #ae1e1e;
    padding: 10px 20px;
    border: 1px solid #ae1e1e;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    font-size: 12px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    transition: background-color 1.5s, color 1s;
}

.button:hover {
    background-color: #ae1e1e;
    color: #f5f5dc;
}

.fade-in {
    opacity: 1;
}

.fade-out {
    opacity: 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}


.social-icon {
    color: #ae1e1e;
    font-size: 1.2em;
    transition: transform 0.3s ease; /* Use transform: scale() */
    display: inline-block; /* Ensure it respects transform */
    margin: 12px;
}

.social-icon:hover {
    color: #ae1e1e;
    transform: scale(1.5); /* Scale to increase size */
}

.intro-text {
    max-width: 125px;
    padding: 10px;
    margin-bottom: 20px;
    margin-top: -40px;
    font-size: 0.8em;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    text-align: justify;
    line-height: 1.5em;
}
