body {
    background-color: white;
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    justify-content: space-between;
}

*{
    box-sizing: border-box;
}

div {
    width: 32%;
    margin: 10px auto;

}

h1 {
    font-size: 2.4vw;
    margin: 10px auto;
}

p {
    width: 100%;
    font-size: 1.6vw;
    letter-spacing: 0.5px;
    margin: 10px auto;
}

img {
    width: 100%;
    margin: 10px auto;
}

section{
    width: 100%;
    margin: 10px auto;
}

#link {
    color: rgb(141, 141, 233)
}

@media screen and (max-width: 1000px) {
    div{
        width: 48%
    }

    div:nth-of-type(3){
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }

    div:nth-of-type(3) > h1{
        width: 100%;
    }
    
    div:nth-of-type(3) > img{
        width: 30%
    }

    div:nth-of-type(3) > section{
        width: 50%
    }

}

@media screen and (max-width: 576px) {
    div{
        width: 100%
    }

    div:nth-of-type(3) > img{
        width: 100%
    }

    div:nth-of-type(3) > section{
        width: 100%
    }

}