*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Montserrat', 'Fraunces', 'serif', sans-serif;
    background-color: hsl(30, 38%, 92%);
}
.container{
    height: 100vh;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
}
.main{
    width: 550px;
    height: 400px;
    background-color: hsl(0, 0%, 100%);
    margin: 100px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
}
.main img{
    width: 267px;
    border-radius: 10px 0 0 10px;
}
.side-details{
    display: flex;
    flex-direction: column;
    align-items: left;
    padding: 25px 30px;
    height: 100%;
    /* background-color: red; */
}
.side-details h3{
    font-size: 14px;
    color:rgb(146, 144, 144);
    margin-bottom: 16px;
    letter-spacing: 4px;
}
.side-details h1{
    font-size: 26px;
    font-family: 'Fraunces';
    font-weight: 700;
    margin-bottom: 24px;
}
.side-details p{
    font-size: 14px;
    font-family: 'Montserrat';
    font-weight: 500;
    margin-bottom: 24px;
}
.side-details h4{
    font-size: 30px;
    color: green;
    margin-bottom: 20px;
}
.side-details span{
    font-size: 18px;
    color:rgb(146, 144, 144);
    margin-left: 22px;
}
.side-details a button{
    width: 100%;
    height: 40px;
    align-items: center;
    background-color: green;
    border: none;
    border-radius: 5px;
    color: white;
    padding-bottom: 6px;
}
.side-details a button:hover{
    cursor: pointer;
    background-color: rgb(2, 95, 2);
}
.side-details a button img{
    width: 16px;
    margin-top: 6px;
    align-items: center;
    text-align: center;
}


.attribution { font-size: 20px; text-align: center; }
    .attribution a { color: hsl(228, 45%, 44%); }
    a{
      font-size: 20px;
      list-style: none;
      text-decoration: none;
    } 

@media screen and (max-width: 375px) {
    .container{
        height: 100vh;
        width: 375px;
        top: 0;
        right: 0;
        left: 0;
        padding-left: 30px;
        padding-right: 30px;
    }
    .main{
        width: 100%;
        height: 850px;
        background-color: hsl(0, 0%, 100%);
        flex-direction: column;
        justify-content: space-between;
    }
    .main img{
        width: 100%;
        border-radius: 10px 10px 0 0;
    }

}