* {
    margin: 0;
    padding: 0;
}

/* HTML Tags */

html {
    color: none;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: rgb(255, 255, 255);
}

hr {
    border: 1px solid rgb(51, 64, 72);
}

h1 {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

a {
    color: #292929;
    text-decoration: none;
    opacity: 1;
    outline: none;
}

ol, ul {
    list-style: none;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-left: 0px;
}

sub {
    display: flex;
    background-color: #f5f5f5;
    width: 100%;
    min-height: 150px;
}

td {
    padding: 10px;
}

tr {
    border-bottom: 1px solid rgb(198, 198, 198);
}

/* Basic classes */

.center-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.click {
    color: rgb(163, 163, 255);
}

.click:hover {
    cursor: pointer;
    color: rgb(108, 108, 244);
    text-decoration: underline;
}

.title {
    color: white;
    font-size: 80px;
    letter-spacing: 0.2em;
}

.tcenter {
    text-align: center;
}

.tblock {
    text-align: justify;
}

.mousebtn {
    margin-left: -10px;
    text-align: center;
    position: absolute;
    width: 20px;
    height: 40px;
    left: 50%;
    bottom: 40px;
}

.mousebtn > i {
    color: white;
}

.mousebtn .icon {
    position: relative;
    top: 0px;
    font-size: 24px;
    color: #fff;
    animation: mouse-anim 1s ease-out 0s infinite;
}

@keyframes mouse-anim {
0% {
    top: 0px;
}
50% {
    top: 10px;
}
100% {
    top: 0px;
}
}

/* Top Section */

.top-menu {
    float: right;
    margin-right: 35px;
}

.top-menu > ul > li > a {
    color: white;

}

.top-menu > ul > li > a:hover {
    border-bottom: 4px solid rgb(52, 174, 196);
    border-radius: 2px;
}

.menu-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-item {
    font-size: 15px;
    letter-spacing: 0.2em;
}

section.top {
    width: 100%;
    height: 950px;
    display: flex;
    justify-content: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

#menu-bar {
    display: flex;
    padding: 7.5px;
}

#menu-bar > li {
    margin-left: 25px;
}

.navbar {
    padding: 25px;
    width: 100%;
    z-index: 5;
    position: fixed;
}

nav {
    width: 100%;
    height: 45px;
    background-color: rgb(74, 85, 171);
    display: flex;
    box-shadow: 1px 1px 1px black;
    justify-content: space-between;
}

.nav-item {
    position: relative;
    display: flex;
    min-width: 65px;
    padding: 5px;
    align-items: center;
    justify-content: center;
    background-color: rgb(43, 58, 226);
    height: 20px;
    border-radius: 5px;
    margin-right: 5px;
}

.nav-item:hover {
    cursor: pointer;
    background-color: rgb(41, 36, 170);
}

.nav-item.active {
    background-color: rgb(30, 0, 130);
}

.nav-item.active:hover {
    cursor: default;
}

.nav-text {
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(255, 255, 255);
    font-weight: 600;
    font-size: 1.3vh;
    padding-left: 5px;
    padding-right: 5px;
}

.heading {
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(255, 255, 255);
    font-weight: 600;
    font-size: 1.3vh;
    padding-left: 5px;
    padding-right: 5px;
}

/* Main Section */

.intro-text {
    display: flex;
    margin-top: 80px;
    margin-left: 60px;
    margin-bottom: 50px;
    padding: 15px;
    flex-wrap: wrap;
}

.intro-title {
    color: rgb(0, 0, 0);
    font-size: 50px;
    font-family: 'Times New Roman', Times, serif !important;
    width: 100%;
}

.intro-subtext {
    margin-top: 30px;
    color: rgb(87, 87, 87);
    font-size: 20px;
    font-weight: 300;
    width: 100%;
}

.intro-subtext .link:hover {
    text-decoration: underline;
}

.footer {
    width: 100%;
}

.socials {
    margin-left: 55px;
    display: flex;
    padding: 5px;
    width: 40%;
    height: 50px;
    justify-content: center;
    align-items: center;
}

.svg {
    padding-left: 15px;
}

svg:hover {
    cursor: pointer;
}
