* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Cabin', sans-serif;
    font-size: 16px;
}

header .top-header {
    height: 0;
    line-height: 0;
    position: relative;
}

.navbar {
    padding: 0;
}

.navbar-brand {
    padding-top: 25px;
}

.navbar-brand img {
    height: 30px;
}

.domain-maintenance {
    color: #fff;
    padding: 200px 0;
    background-image: url("img/mask.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    text-align: center;
}

.domain-maintenance .section-header {
    margin: 0 0 20px 0;
}

.domain-maintenance .section-header h1 {
    display: inline;
}

.domain-maintenance .section-content a {
    padding: 15px 35px;
    margin: 50px auto;
    width: max-content;
    color: #fff;
    font-weight: 900;
    font-size: 0.9rem;
    border-radius: 5px;
    background: #257AFA;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px 0;
    -webkit-transition: background-color 0.5s linear;
    -ms-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
}

.domain-maintenance .section-content a:hover {
    box-shadow: 0 11px 16px -3px rgba(0, 0, 0, 0.1),0 4px 5px 0rgba(0, 0, 0, 0.1);
    background-color:#2273EC;
}

#domainTld {
    color: #2273EC;
}

@media only screen and (min-width : 1200px) {
    .container { 
        max-width: 1300px; 
    }
}

@media only screen and (max-width: 768px) {
    .domain-maintenance .section-header h1 {
        font-size: 2.2rem;
    }
}