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

* {
    font-family: "Outfit", sans-serif;
    margin: 0;
    padding: 0;
}

body {
    background-color: hsl(220, 15%, 65%);
    min-height: 100vh;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.container {
    margin: 150px auto;
    min-width: 8rem;
    max-width: 15rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 50%;
    border-radius: 25px;
}

.wraper {
    background-color: hsl(212, 45%, 89%);
    width: 320px;
    height: 480px;
    border-radius: 28px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.img {
    display: flex;
    justify-content: center;
    margin: 0;
}

.img img {
    width: 280px;
    height: 280px;
    border-radius: 25px;
}

.title {
    height: 60px;
    width: 260px;
    display: flex;
    justify-content: center;
    margin: 1.2rem 0 0.3rem 0;
    
}

.title p {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
}

.subtitle{
    width: 260px;
    height: 60px;
    display: flex;
    justify-content: center;
    margin-top: 0.3rem;
}

.subtitle p {
    text-align: center;
    color: hsl(220, 15%, 55%);
    font-size: 15px;
    font-weight: 400;
}




.attribution {
    margin-bottom: 150px; 
    font-size: 15px; 
    text-align: center; 
}

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