section {
    background-image: url(../img/planet-background.jpeg);
    background-size: 48%;
    margin: 0%;
}

.all {
    padding: 0% 10%;
    padding-top: 10%;
    padding-bottom: 5%;
}

h1 {
    text-align: left;
    text-shadow: 5px 5px 6px black;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.text {
    display: flex;
    flex-direction: column;
    text-align: justify;
    gap: 20px;
    text-shadow: 5px 2px 4px black;
}

.container {
    display: flex;
    flex-direction: column;
    margin-bottom: 5%;
    width: 80%;
}

.text {
    width: 80%;
}

.button {
    display: flex;
    justify-content: end;
    gap: 10px;
    margin-bottom: 2%;
    margin-top: 10px;
}

.box {
    display: flex;
    justify-content: center;
    padding-bottom: 25px;
}

/* Responsive Design for Mobile */
@media screen and (max-width: 1220px) {
    section {
        background-size: 90%;
    }

    h1 {
        font-weight: bold;
    }

    .all {
        padding-top: 60%;
    }

    .text {
        width: auto;
        text-align: justify;
        font-size: 13px;
    }

    .container {
        display: flex;
        margin-bottom: 5%;
        width: 100%;
    }

    .bigbox {
        padding-bottom: 15%;
    }

    .box {
        display: flex;
        justify-content: center;
    }
}