@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    background-color: hsl(212, 45%, 89%);
    justify-content: center;
    align-items: center;
    font-family: "Outfit", sans-serif;
    width: 100vw;
    height: 100vh;
}

main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #fff;
    padding: 15px 15px 40px 15px;
    width: 330px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0px 0px 7px 0px rgba(105, 117, 140, 1);;
}

main img {
    border-radius: 15px;
    width: 100%;
}

.text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 10px 0 10px;
}

@media only screen and (max-width: 375px) {
    main {
        width: 305px;
    }
}