.main-content > h1 {
    text-align: center;
    margin-bottom: -50px;
}

.wrapper-2 {
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: space-between;
}

.wrapper-2 div {
    padding: 20px;
    border-radius: 20px;
    border-top: 1px solid rgba(204, 204, 204, 0.2);
    border-bottom: 1px solid rgba(204, 204, 204, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    width: calc(100% - 40px);
}

.wrapper-2 .discord {
    background: url('../images/Discord.jpg') center/cover no-repeat;
}

.wrapper-2 .minecraft {
    background: url('../images/minecraft-hero.jpg') center/cover no-repeat;
}

.wrapper-5 {
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}

.wrapper-5 div {
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    border-top: 1px solid rgba(204, 204, 204, 0.2);
    border-bottom: 1px solid rgba(204, 204, 204, 0.2);
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: auto;
    cursor: pointer;
    user-select: none;
    outline: 1px transparent;
    transition: background-color .3s ease-in-out, outline .3s ease-in-out;
}

.wrapper-5 div:hover {
    outline: 1px solid rgba(204, 204, 204, 0.5);
}

.wrapper-5 div p {
    text-align: center;
    font-size: 14px;
    max-width: 170px;
}

.wrapper-5 .alphabets {
    background: url('/./images/small-alphabets.jpg') center/cover no-repeat;
}

.wrapper-5 .lessons {
    background: url('/./images/small-lessons.jpg') center/cover no-repeat;
}

.wrapper-5 .resources {
    background: url('/./images/small-resources.jpg') center/cover no-repeat;
}

.wrapper-5 .events {
    background: url('/./images/small-events.jpg') center/cover no-repeat;
}

.wrapper-5 .contact {
    background: url('/./images/small-contact.jpg') center/cover no-repeat;
}

.start {
    padding: 20px;
    border-radius: 20px;
    border-top: 1px solid rgba(204, 204, 204, 0.2);
    border-bottom: 1px solid rgba(204, 204, 204, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    width: calc(100% - 40px);
    height: 60vh;
    background: url('/./images/Beginning.jpg') center/cover no-repeat;
}

.start h1 {
    font-size: 50px;
}

.start div {
    margin-top: 30px;
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
}

.wrapper-3 {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
}

.wrapper-3 div {
    width: 100%;
    padding: 20px;
    border-radius: 20px;
    border-top: 1px solid rgba(204, 204, 204, 0.2);
    border-bottom: 1px solid rgba(204, 204, 204, 0.2);
    display: flex;
    flex-direction: column;
    gap: 15px;
    outline: 1px transparent;
}

.wrapper-3 .adFree {
    background: url('/./images/adFree.jpg') center/cover no-repeat;
}

.wrapper-3 .handcraftedContent {
    background: url('/./images/handcraftedContent.jpg') center/cover no-repeat;
}

.wrapper-3 .passionProject {
    background: url('/./images/passionProject.jpg') center/cover no-repeat;
}

@media (max-width: 480px) {
    .wrapper-2 {
        flex-direction: column;
    }

    .wrapper-5 {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: space-around;
    }

    .wrapper-5 div {
        width: calc(50% - 45px);
    }

    .wrapper-5 div p {
        font-size: 12px;
    }

    .wrapper-3 {
        flex-direction: column;
        width: calc(100% - 40px);
    }

    .start {
        background: url('/./images/Beginning.jpg') 94%/cover no-repeat;
    }
}