@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700&family=Lexend+Deca&display=swap');


body{
    background-color: hsl(0, 0%, 95%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    font-size: 15px;
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 400;
    
}
.container{
    max-width: 960px;
    margin: 0 auto;
}

.wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-radius: 12px;
    margin: 2rem;
    overflow: hidden;
}
.box{
    padding: 40px;
}
.box h2{
    font-family: 'Big Shoulders Display', cursive;
    font-weight: 700;
    color: hsl(0, 0%, 95%);
    text-transform: uppercase;
    font-size: 30px;
}
.box p{
    color: hsla(0, 0%, 100%, 0.75);
    /* line-height: 1.6rem; */
}
.box a{
    text-decoration: none;
    background-color: hsl(0, 0%, 95%);
    padding: 13px 27px;
    border-radius: 26px;
    display: inline-block;
    margin-top: 60px;
    border: 2px solid hsl(0, 0%, 95%);
    transition: all .3s ease-in-out;
}
.box a:hover{
    color: hsl(0, 0%, 95%);
    background: transparent;
}
.box1{
    background: hsl(31, 77%, 52%);
}
.box2{
    background: hsl(184, 100%, 22%);
}
.box3{
    background: hsl(179, 100%, 13%);
}

.box1 a{
    color: hsl(31, 77%, 52%);
}
.box2 a{
    color: hsl(184, 100%, 22%);
}
.box3 a{
    color: hsl(179, 100%, 13%);
}

@media only screen and (max-width:768px){
.wrapper{
    grid-template-columns: 1fr;
}
}