*
{
    top: 0;
    left: 0;
    margin: 0;
    box-sizing: border-box;
    color: hsl(0, 0%, 95%);
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 400;
    
}
header
{
    display: grid;
    grid-template-columns: repeat(3 ,300px) ;
    height: 100vh;
    justify-content: center;
    align-content: center;
    box-sizing: border-box;
    
}
img
{
    margin: 50px 0 0 50px;
}
h1,p,button
{
padding: 0px 50px 0px 50px;
color: hsla(0, 0%, 100%, 0.75);


}
section:nth-child(1)
{
    background-color: hsl(31, 77%, 52%);
    border-radius: 10px 0 0 10px;
}
section:nth-child(2)
{
    background-color: hsl(184, 100%, 22%);
}
section:nth-child(3)
{
    background-color: hsl(179, 100%, 13%);
    border-radius: 0 10px 10px 0;
}
button
{
    height: 40px;
    width: 120px;
    border-radius: 50px;
    border: 2px solid hsl(0, 0%, 95%);
    cursor: pointer;
    margin: 30px;
    margin-bottom: 50px;
    color: hsl(0, 0%, 95%);
    padding: 10px;
    box-sizing: border-box;

}
p
{
    color: hsla(0, 0%, 100%, 0.75);
    font-size: 15px;
    padding-bottom: 30px;
    line-height: 25px;
    
    
}

section:nth-child(1)>button
{
    
    background-color: hsl(0, 0%, 95%);
    color: hsl(31, 77%, 52%);
}
section:nth-child(2)>button
{
    
    background-color: hsl(0, 0%, 95%);
    color: hsl(184, 100%, 22%);
}
section:nth-child(3)>button
{
    
    background-color: hsl(0, 0%, 95%);
    color: hsl(179, 100%, 13%);
}
h1
{
    text-transform: uppercase;
    font-family: 'Big Shoulders Display', cursive;
    font-weight: 700;
    font-size: 35px;
    padding-top: 50px;

}


section:nth-child(1)>button:hover
{
    background-color: hsl(31, 77%, 52%);
    color: hsl(0, 0%, 95%);
}
section:nth-child(2)>button:hover
{
    background-color: hsl(184, 100%, 22%);
    color: hsl(0, 0%, 95%);
}
section:nth-child(3)>button:hover
{
    background-color: hsl(179, 100%, 13%);
    color: hsl(0, 0%, 95%);
}

@media (max-width:375px)
{

    header
{
    display: grid;
    width: 374px;
    height: auto;
    grid-template-columns: 374px;    
}
  section:nth-child(1)
{
    
    border-radius: 0 ;
}

section:nth-child(3)
{
   
    border-radius: 0 ;
}
img
{
    margin: 50px 0 0 70px;
}

h1,p
{
    margin: 20px  ;
    padding-top: 10px;
    
}
button
{
margin-top: 0;
margin-left: 70px;
}

}
