body,html{
    padding: 0;
    margin: 0;

    font-family: Roboto;
}

.container{
    width: 100%;
    height: 100%;

    background: white;
}
.container > .row{
    width: 100%;
    height: 100%;
    display: flex;

    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.row h1{
    color: #A71328;
    text-transform: uppercase;
    margin-bottom: 50px;
    letter-spacing: 2px;
    text-align: center;
}

.row .contacts{
    margin-top: 50px;
}
.row .contacts i{
    color: white;
    margin-right: 10px;

    font-size: 30px;
    top: 5px;
    position: relative;
    transition: 0.3s;
}
.row .contacts .sub-contact{
    margin-top: 15px;
}
.row .contacts a{
    color: white;
    text-decoration: none;
    font-size: 20px;

    line-height: 30px;
    transition: 0.3s;
}
.row .contacts .sub-contact:hover > i{
    color: #FF0000;
}
.row .contacts .sub-contact:hover > a{
    color: #FF0000;
}

@media(max-width: 600px){
    .row h1{
        font-size: 18px;
    }
    .row .contacts a{
        font-size: 16px;
    }
}