@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    padding: 0vw;
    margin: 0;
    box-sizing: border-box;
    background-color: rgb(47, 47, 47);
    font-family: 'Poppins',sans-serif;
}
main {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    padding-top: 5vw;
}
.text10 {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    width: 30vw;
    height: 90vh;
}
.pink {
    font-size: 3.5vw;
    font-weight: 600;
    color: rgb(254, 195, 199);
}
.blue {
    font-size: 3.5vw;
    font-weight: 600;
    color: rgb(154, 215, 243);
}
.green {
    font-size: 3.5vw;
    font-weight: 600;
    color: rgb(107, 223, 218);
}
.subtext10 {
    font-weight: 200;
    color: white;
    padding-bottom: 1.5vw;
}
.buttom10 {
    color: rgb(47, 47, 47);
    font-weight: 500;
    width: 8vw;
    height: 6vh;
    box-sizing: border-box;
    background-color: white;
    border-radius: 70px;
    border: none;
}
.photos10grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 180px);
    gap: 15px; 
}
.photos10 {
    width: 9vw;
}
@media (max-width: 780px) {
    main {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        align-content: center;
        padding-top: 10vw;
    }
    .text10 {
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
        width: 70vw;
        height: 65vh;
    }
    .pink {
        font-size: 10vw;
        font-weight: 600;
        color: rgb(254, 195, 199);
    }
    .blue {
        font-size: 10vw;
        font-weight: 600;
        color: rgb(154, 215, 243);
    }
    .green {
        font-size: 10vw;
        font-weight: 600;
        color: rgb(107, 223, 218);
    }
    .subtext10 {
        font-weight: 200;
        color: white;
        padding-bottom: 3vw;
    }
    .buttom10 {
        color: rgb(47, 47, 47);
        font-weight: 500;
        width: 28vw;
        height: 6vh;
        box-sizing: border-box;
        background-color: white;
        border-radius: 70px;
        border: none;
    }
    .photos10grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(4, 60px);
        gap: 15px; 
    }
    .photos10 {
        width: 16vw;
    }
}