* {
    margin: 0;
    padding: 0;
}

a, a:visited, a:hover, a:active {
    color: inherit;
    color: gray;
    text-decoration: none;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 0px grey;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: gray;
    border-radius: 10px;
}

@font-face {
    font-family: 'Social Media Circled';
    src: url('fonts/Social Media Circled.otf') format('opentype');
}

@font-face {
    font-family: 'Westwood Sans';
    src: url('fonts/WestwoodSans-Regular.ttf') format('truetype');
}

/* UNIVERSAL */

#header {
    height: 100px;
    width: 100%;
    position: fixed;
    background-color: #333333;
}

#header-elements {
    display: flex;
    height: 100px;
    width: 600px;
    margin: auto auto;
}

#header p {
    font-family: 'Westwood Sans', sans-serif;
    color: gray;
    margin: auto auto;
}

#title {
    font-size: 50px;
}

#programs {
    font-size: 25px;
    position: relative;
    top: 8px;
}

#header img {
    height: 60px;
    border: solid 2px gray;
    margin: auto auto;
}

#footer {
    height: 50px;
    width: 100%;
    position: fixed;
    bottom: 0;
    background-color: #333333;
}

#footer-elements {
    height: 50px;
    width: 250px;
    display: flex;
    margin: auto auto;
}

#socials {
    font-family: 'Social Media Circled';
    color: gray;
    margin: auto auto;
    display: flex;
    font-size: 25px;
}

#one {
    margin-right: 12px;
}

#two {
    margin-right: 12px;
}

#my-name {
    font-family: 'Westwood Sans', sans-serif;
    color: gray;
    margin: auto auto;
}

#main {
    position: absolute;
    top: 100px;
    bottom: 50px;
    height: auto;
    width: 100%;
    overflow: auto;
    background-color: #222222;
}

#main-container {
    position: relative;
    width: 50%;
    margin: auto;
    background-color: #222222;
}

#main-text {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    color: dimgray;
    padding-top: 50px;
    padding-bottom: 50px;
}

#welcome {
    font-family: 'Westwood Sans', sans-serif;
    font-size: 30px;
    color: gray;
}

/* HELP PAGE */

.question {
    font-family: 'Westwood Sans', sans-serif;
    font-size: 20px;
    color: gray;
}

/* PROGRAMS PAGE */

.title {
    font-family: 'Westwood Sans', sans-serif;
    font-size: 25px;
    color: gray;
    text-align: center;
}

#intro {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    color: dimgray;
    padding-top: 50px;
    text-align: center;
}

.description {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    color: dimgray;
    padding-top: 50px;
    text-align: center;
}

.images {
    display: flex;
}

.images img {
    margin: auto auto;
    border: 5px solid black;
    overflow: auto;
}

#description-last {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    color: dimgray;
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
}