body {
    margin: 0;
    padding: 0;
    background-color: rgb(43, 110, 253);
    background-image: url("./assets/rays.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
    /* overflow: hidden; */
}

.backArrow {
    width: 3rem;
    height: 3rem;
    padding: 1rem 2rem;
}

.box {
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
}

h1 {
    color: white;
    font-family: "Galindo", serif;
    font-size: 8rem;
    text-align: center;
    align-self: center;
}

.links img {
    width: 4rem;
    height: 4rem;
    /* background-color: black; */
    border-radius: 50%;
}

@media(max-width: 900px) {
    h1 {
        font-size: 5rem;
    }

    .box {
        height: 70vh;
    }
}


@media(max-width: 600px) {
    .backArrow {
        width: 2rem;
        height: 2rem;
    }

    h1 {
        font-size: 4.5rem;
    }

    .links img {
        width: 2rem;
        height: 2rem;
        /* background-color: black; */
        border-radius: 50%;
    }
}
