*{
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
    font-family: 'Mulish', sans-serif;
    font-size: 1.2rem;
}
footer{
    background-color: #343434;
    width: 100%;
    padding: 5rem 0;
}
.container{
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    justify-content: space-between;
    padding: 1rem;
    color: #fff;
}
li{
    list-style: none;
}
h1,h2{
    font-weight: 500;
}
p{
    margin: 0;
    margin-bottom: 5px;
}
li:not(:last-child){
    margin-bottom: 1rem;
}
.form{
    margin: 1rem auto;
    display: flex;
}
.email{
    height: 3.5rem;
    outline: 0;
    border: 1px solid #9C9C9C;
    background-color: #343434;
    padding: 1rem;
    width: 350px;
    border-radius: 5px;
}
.email:focus{
    box-shadow: 0 0 0 2px #9C9C9C,
                0 0 0 5px #64744C;
}
.email::placeholder{
    color: #9C9C9C ;
    font-family: 'Mulish', sans-serif;
    font-size: 1.2rem;
}
.button{
    text-decoration: none;
    background-color: #92B871;
    margin: auto 5px;
    border-radius: 5px;
    padding-right: 2rem;
    padding-left: 2rem;
    color: #000;
    height: 3.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;
}
.button:focus{
    box-shadow: 0 0 0 2px #9C9C9C,
                0 0 0 5px #92B871;
}
@media screen and (max-width:1024px){
    .form{
        flex-wrap: wrap;
        flex-direction: row;
    }
    .button{
        width: 350px;
        margin:5px 0;
    }
}
@media screen and (max-width:768px){
    .container{
        display: flex;
        flex-direction: column;
        width: 350px;
        margin: auto;
        text-align: center;
    }
}
