@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,700;9..144,900&family=Outfit:wght@400;700&display=swap');

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


.main-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1440px;
    height: 100vh;
    background-color: hsl(212, 45%, 89%);
}

.sub-container {
    width: 360px;
    height: 530px;
    background-color:hsl(0, 0%, 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    justify-content: space-around;
}

img {
    width: 330px;
    text-align: center;
    border-radius: 20px;
    margin-top: 10px;
}

h1 {
    font-size: 29px;
    font-weight: 700;
    text-align: center;
}

p {
    font-size: 15px;
    text-align: center;
    color: hsl(220, 15%, 55%);
    font-weight: 400;
    padding: 10px;
    margin-top: 10px;
}

footer { 
    font-size: 11px; 
    text-align: center;
}

footer a { 
    color: hsl(228, 45%, 44%); 
}

@media only screen and (max-width: 375px) {
    .main-container {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100vh;
        background-color: hsl(212, 45%, 89%);
    }
}