body {
    background-color: hsl(30, 38%, 92%)
}

.whole {
    width: 700px;
    height: 520px;
    background-color: hsl(0, 0%, 100%);
    margin: auto;
    border-radius: 15px;
    margin-top: 50px;
    display: flex;
    @media only screen and (max-width: 800px) {
        display: block;
        width: 55%;
        height: 670px;

    }
}
.whole .img1{
    height: 100%;
    width: 50%;
    border-radius: 15px 0 0 15px;
    @media only screen and (max-width:800px) {
        display: none;
    }
}
.img2 {
    display: none;
    @media only screen and (max-width:800px){
        display: block;
        width: 100%;
        height: 300px;
        border-radius: 12px 12px 0 0;
    }
}
.text h3{
    letter-spacing: 7px;
    padding-left: 50px;
    padding-top: 25px;
    font-weight: 600;
    font-size: 15px;
    font-family:Montserrat Verdana, Geneva, Tahoma, sans-serif;
    color: hsl(228, 12%, 48%);
    line-height: 0;
    @media only screen and (max-width:800px){
        font-size: 7px;
        padding-left: 30px;
    }
}
.text h2{
    font-family: Fraunces;
    font-size: 40px;
    line-height: 1;
    padding-left: 50px;
    font-weight: 700;
    @media only screen and (max-width:800px){
        font-size: 30px;
        line-height: 1;
        padding-left: 30px;
    }
}
.text p {
    padding-left: 50px;
    font-size: 15px;
    font-family:Montserrat Verdana, Geneva, Tahoma, sans-serif;
    color: hsl(228, 12%, 48%);
    font-weight: 600;
    line-height: 1.5;
    font-size: 15px;
    @media only screen and (max-width:800px) {
        line-height: 1;
        font-size: 13px;
        padding-left: 30px;
    }
}

.text h1{
    padding-left: 50px;
    font-family: Fraunces;
    padding-top: 20px;
    @media only screen and (max-width:800px) {
        padding-top: 0px;
        padding-left: 30px;
    }
}
.sub{
    margin-left: 205px;
    margin-top: -48px;
    font-family: Fraunces;
    font-size: small;
    color: hsl(228, 12%, 48%);
}

.button {
    width: 240px;
    height: 55px;
    border: none;
    border-radius: 15px;
    margin-top: 40px;
    margin-left: 50px;
    background-color: hsl(158, 36%, 37%);
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 15px;
    font-family: Montserrat;
    font-weight: 700;
    color: hsl(0, 0%, 100%);
    transition: 0.3s;
    cursor: pointer;
    @media only screen and (max-width:800px) {
        margin-left: 30px;
    }
}
.button img{
    width: 25px;
    height: 25px;
    margin:10px;
}
.button:hover{
    background-color:  hsl(212, 21%, 14%);
}
.attribution { 
    font-size: 11px; 
    text-align: center; 
    margin-top: 50px;
}
    .attribution a {
     color: hsl(228, 45%, 44%); 
}