body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: rgb(38, 38, 38);
    color: white;
}

a {
    text-decoration-color: dodgerblue;
    color: dodgerblue;
}

h1 {
    font-size: 58px;
    color: white;
    font-family: 'Droid Sans Mono', monospace;
}

h2 {
    color: white;
    font-family: 'Comic Sans MS', cursive;
}

.main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
    text-align: center;
}

.top.lft {
    position: absolute;
    top: 0;
    left: 0;
}

.top.rgt {
    position: absolute;
    top: 0;
    right: 0;
}

.social-icon {
    color: #fff;
    text-decoration: none;
    font-size: 50px;
    margin-top: 20px;
    height: 50px;
    width: 50px;
}

.social-text {
    font-size: 25px;
    margin-top: -1px;
}

.social-a {
    text-decoration: none;
    display: inline-block;
    text-align: center;
    margin-left: 20px;
    color: white;
    transition: all 0.3s ease;
}

.social-a:hover {
    color: #646464;
    transition: all 0.3s ease;
}

.logo {
    height: 256px;
}

.nav-link {
    color: white;
    /*text-decoration: dashed;*/
    font-size: 20px;
    /*margin: 0 10px;*/
}

.inline {
    display: inline-block;
}

@media (max-width: 992px) {
    h1 {
        font-size: 29px;
    }

    .social-icon {
        font-size: 25px;
        width: 25px;
        height: 25px;
    }

    .social-text {
        font-size: 12.5px;
    }

    .nav-link {
        font-size: 14px;
    }

    .logo {
        height: 128px;
    }
}