/* Main content area */
.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    text-align: center;
}

.home-title {
    font-size: 1.75rem;
    font-weight: 850;
}

.about-subtitle {
    font-size: 1.45rem;
    font-weight: 650;
}

.about-text {
    font-size: 1.2rem;
    font-weight: 400;
}

.two-button-div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 15px;
}

.twitter-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 15px;
    cursor: pointer;
    border: #000 solid 2px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.25rem;

    background-color: #000;
    color: #fff;

    transition: all .3s ease-in-out;
}
.twitter-button:hover {
    background-color: #fff;
    color: #000;
}

.above-footer-redirect-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.above-footer-redirect-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 15px;
    cursor: pointer;
    border: #000 solid 2px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.25rem;

    background-color: #000;
    color: #fff;

    transition: all .3s ease-in-out;
}
.above-footer-redirect-button:hover {
    background-color: #fff;
    color: #000;
}

/* Responsive styling */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    .content {
        flex-direction: column;
        align-items: center;
    }

    .content section {
        width: 80%;
    }

    nav ul li {
        display: block;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5em;
    }

    nav ul li {
        font-size: 1em;
    }

    .content section {
        width: 100%;
    }
}