body {
    margin: 0;
    height: 100%;
    background-image: url('../images/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    font-family: Arial, sans-serif;
    background-color: #141427;
    color: #fff;
    margin: 0;
    padding: 0;
}


h1, h2 {
    text-align: center;
}

h3 {
    text-indent: 40px;
    text-align: justify;
}

.logo {
    width: 50px;
}

div.box {
    background-color: rgb(64, 64, 91);
    border-radius: 10px;
    width: 800px;
    margin-left: 50%;
    transform: translate(-50%, 0);
    padding: 20px;

    margin-bottom: 10px;
}

.bar-icon {
    width: 30px;
}

.inline-text {
    font-size: 18px;
    vertical-align: middle;
}

.inline-image {
    vertical-align: middle;
    margin-right: 10px;
}

.inst {
    display: inline-flex;
    align-items: center;
    margin-left: 50%;
    transform: translate(-50%, 0);
}

a.inst {
    margin-bottom: 10px;
    text-decoration: none;
    color:white;
    width: 500px;
    padding: 20px;
    border-radius: 10px;
    transition: .5s;
    
}

a.inst:hover {
    background-color: #8FABFE;
}

.inst img {
    width: 75px;
}

.inst span {
    font-size: 40px;
}

main {
    padding: 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(64, 64, 91);
    padding: 10px 20px;
    margin-bottom: 20px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
}

.nav-links a p {
    color: white;
    font-size: 18px;
    transition: .25s;
}

.nav-links a p:hover {
    color: #8FABFE;
}