@import url('https://fonts.googleapis.com/css?family=Josefin+Sans:300,400,700|Karla&display=swap');

body{
    background-color: black;
    color: white;
    font-family: 'Josefin Sans', sans-serif;
}

h2{
    font-weight: 300;
}

a{
    color: white;
    text-transform: uppercase;
}

a:hover{
    text-decoration: none;
}

.sub-title{
    text-align: center;
}

.brand{
    padding: 50px 0;
    display: grid;
    justify-content: center;
}

.brand img{
    width: 250px;
}
.content{
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: center;
    gap: 30px;
    margin-bottom: 100px;
}

.box{
    width: 250px;
    height: 250px;
    background: #181818;
    color: white;
    display: grid;
    align-items: center;
    justify-content: center;
    padding: 15px;
    text-align: center;
}

.box:hover{
    background: #222222;
    text-decoration: none;
}

.close{
    font-size: 2em;
}

/* TABLET */
@media (max-width: 980px) {
    .content{
        grid-template-columns: auto auto;
    }
}

/* PHONE*/
@media (max-width: 630px) {
    .content{
        grid-template-columns: auto;
    }
}