*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
body{
    background-color: aliceblue;
}
html{

    font-size: 15px;

}
.container{
    background-color: aliceblue;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.main{
    width: 20%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: hsl(0, 0%, 100%);
    border-radius: 20px;
}
.main img{
    width: 88%;
    height: 65%;
    margin: 1em;
    border-radius: 20px;
}
.content{
    text-align: center;
    font-size: 10px;
}
.attribution a { 
    color: hsl(228, 45%, 44%); 
}

.attribution {
    font-size: 11px; 
    text-align: center; 
}

.main p{
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    text-align: center;
    margin: auto;
    /* padding: 5px; */
    padding:  1em;
    font-size: 1em;
    color: hsl(216, 15%, 48%);
  }

.main h2{
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    text-align: center;
    /* margin: auto; */
    /* padding-bottom: 100px; */
    font-size: 0.9em;
  }

  @media(max-width:380px){

    .main{
        width:80%;
    }

  }



