html {
    visibility: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: rgb(238, 220, 223);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-align: center;
    color: darkred;
}

#title {
    position: absolute;
    text-align: center;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 400px;
    z-index: -1;

    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(assets/banner.gif);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    color: white;
}

#title h1 {
    color: white;
    font-size: 100px;
    font-weight: 700;
    margin: 0;
    margin-top: 60px;
}

#title p {
    font-size: 34px;
}

#title-spacer {
    width: 100%;
    height: 400px;
}

#navbar {
    display: table;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    height: 50px;
    width: 100%;
    padding: 0 10px;

    background: rgb(18, 18, 19);
    color: white;
    animation: fadeinAnimation ease .2s;
}

#navbar p {
    float: left;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding-left: 10px;
}

#icon {
    float: left;
    height: 50px;
}

#navbar-links {
    /* position: absolute;
    top: 50%;
    right: 0; */
    float: right;
}

#navbar-links a {
    float: right;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

#navbar-links a:hover {
    background-color: #ddd;
    color: black;
}

#navbar-links button {
    background-color: white;
    border-radius: 5%;
}

#navbar-links:last-child {
    margin-right: 3%;
}

#main-body {
    box-sizing: border-box;
    padding: 0 10%;
}

#about-us {
    padding-bottom: 100px;
}

#profiles,
#videos {
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5%;
}

#profiles div,
#videos div {
    width: 500px;
    height: auto;
    text-align: center;
}

#profiles p {
    padding: 0 15px;
}

#profiles img {
    object-fit: cover;
    height: auto;
    width: 400px;
    max-width: 100%;
    border-radius: 5%;
}

#videos iframe {
    width: 560px;
    max-width: 100%;
    height: 315px;
}

#voicebank-img {
    display: block;
    margin: 0 auto;
    height: 500px;
}

.justify-text {
    text-align: justify;
}

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

@keyframes fadeinAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}