::selection {
    background: white;
    color: #111215;
}

::-webkit-scrollbar {
    display: none;  /*Chrome, Safari and Opera */
}

body {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    -webkit-font-smoothing: antialiased;
    color: white;
    font-family: sans-serif;
    margin: 0;
}

p {
    text-align: center;
    font-size: 3vw;
    font-weight: lighter;
}

ul {
    text-align: center;
    font-size: 24px;
    font-weight: lighter;
}

button {
    background-color: transparent;
    color: white;
    border-radius: 12px;
    border: 1px solid white;
    text-align: center;
    transition-duration: 0.4s;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 24px;
}

button:hover {
    background-color: white;
    color: black;
}

a {
    color: white;
    text-decoration: none;
}

@keyframes flyOutToLeft {
    0% {transform: translateX(0); opacity: 100%;}
    100% {transform: translateX(-10%); opacity: 0;}
}

.fly-out-left {
    animation: flyOutToLeft 0.5s ease;
}

@keyframes flyInFromLeft {
    0% {transform: translateX(-10%); opacity: 0;}
    100% {transform: translateX(0); opacity: 100%;}
}

.fly-in-left {
    animation: flyInFromLeft 0.5s ease;
}

@keyframes flyOutToRight {
    0% {transform: translateX(0); opacity: 100%;}
    100% {transform: translateX(10%); opacity: 0;}
}

.fly-out-right {
    animation: flyOutToRight 0.5s ease;
}

@keyframes flyInFromRight {
    0% {transform: translateX(10%); opacity: 0;}
    100% {transform: translateX(0); opacity: 100%;}
}

.fly-in-right {
    animation: flyInFromRight 0.5s ease;
}

.page-hidden {
    display: none;
}

.anim-element-container {
    display: flex;
    flex-direction: row;
}

.header {
    height: 10vh;
    display: flex;
    flex-direction: row;
    align-content: center;
}

.header-block {
    display: inline-block;
    text-align: right;
    font-size: 24px;
    padding-top: 2%;
    padding-bottom: 3%;
}

.header-image {
    text-align: left;
    padding-left: 5%;
}

.header-link {
    padding-left: 20px;
    padding-right: 20px;
}

.logo {
    width: 100px;
    height: auto;
}

.header-link-container {
    margin-top: 5%;
    margin-bottom: 5%;
}

.side-column {
    width: 10vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.central-column {
    width: 80vw;
}

.scroll-button {
    font-size: 72px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    cursor: pointer;
}

.body-container {
    height: 100vh;
    margin-left: auto;
    margin-right: auto;
}

.content-container {
    height: 90vh;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
}

.title {
    text-align: center;
    font-Size: 6vw;
    font-weight: normal;
}

.link-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.social-link {
    width: 15vw;
    height: auto;
    filter: grayscale(1);
    transition: all 0.5s ease;
}

.social-link:hover {
    filter: grayscale(0);
}

.darken-social-link {
    width: 15vw;
    height: auto;
    filter: brightness(0.5);
    transition: all 0.5s ease;
}

.darken-social-link:hover {
    filter: brightness(1);
}

.question-container {
    text-align: right;
}

.question {
    text-align: left;
    padding: 20px 20px 25px 30px;
    display: inline-flex;
}

.divider-vertical {
    width: 1px;
    height: 10%;
    background-color: white;
}

.divider-horizontal {
    width: 100%;
    height: 1px;
    background-color: white;
    margin-top: 100px;
    margin-bottom: 0;
}

.button-holder {
    padding: 100px 0 100px 100px;
    border: 1px solid white;
    border-radius: 12px;
    margin: 50px 50px 0 0;
    width: 100%;
}

.homepage-button {
    padding: 50px 0;
    width: 100%;
    cursor: pointer;
    font-size: 2vw
}

.footer {
    height: 250px;
    width: 100%;
    align-items: center;
    flex-direction: row;
}

.footer-block {
    display: inline-block;
    text-align: center;
    font-size: 16px;
}

.copyright {
    font-size: 16px;
    text-align: center;
}