@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

header a {
    color: white;
    text-decoration: none;
}

.image-slide a {
    color: white;
}

.image-slide p {
    text-align: center;
}

a, a:visited, .image-slide a {
    color: white;
}

.page-section img {
    max-width: 500px;
    padding-left: 200px;
    padding-right: 200px;
}

html {
    font-family: 'Roboto', sans-serif;
    color: white;
}

body {
    background:linear-gradient(to bottom right,
        hsl(31.88, 100%, 25.1%) 0%,
        hsl(29.47, 85.69%, 26.9%) 8.1%,
        hsl(26.56, 73.52%, 28.4%) 15.5%,
        hsl(22.96, 62.84%, 29.61%) 22.5%,
        hsl(18.31, 53.23%, 30.55%) 29%,
        hsl(12.07, 44.39%, 31.24%) 35.3%,
        hsl(3.21, 36.13%, 31.69%) 41.2%,
        hsl(351.18, 34.88%, 30.37%) 47.1%,
        hsl(338.55, 36.68%, 28.25%) 52.9%,
        hsl(325.66, 39.13%, 25.99%) 58.8%,
        hsl(312.89, 42.54%, 23.63%) 64.7%,
        hsl(300.86, 47.37%, 21.22%) 71%,
        hsl(291.8, 57.94%, 20.45%) 77.5%,
        hsl(286.72, 69.98%, 19.58%) 84.5%,
        hsl(284.57, 83.69%, 18.45%) 91.9%,
        hsl(284.83, 100%, 17.06%) 100%
    );
    background-size: 200vw 200vh;
    animation: gradient 20s ease infinite;
    margin: 0px;
    padding: 0;
}

header {
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    background-color: black;
    opacity: 50%;
    gap: 5rem;
    animation: partialFade 0.5s ease;
}

.home-page {
    display: flex;
    flex-direction: row;
}

.home-page-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: calc(100vh - 40px);
}

.page {
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 80%;
    max-width: 1000px
}

.page-section h1 {
    text-align: center;
}

.page-section p {
    text-align: center;
}

iframe {
    padding: 5px;
}

.left-home-page {
    animation: fade 1s ease;
}

.right-home-page {
    opacity: 0;
    animation: fade 1s ease 1s 1 forwards;
}
.home-page-text {
    display: flex;
    width: 80%;
    flex-direction: column;
}

.title-text {
    font-size: 5rem;
    font-weight: 900;
}

.secondary-text {
    font-size: 1.8rem;
    font-weight: 400;
    margin-top: -40px
}

.image-slideshow {
    width: 80%;
}

.image-slide {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    animation: fade 0.5s ease;
}

.image-slide img {
    max-width: 80%;
    border-radius: 100px;
}

@media only screen and (max-width: 1000px) {
    .home-page {
        flex-direction: column;
        height: 100vh;
    }
    .home-page-section {
        width: 100%;
        align-items: start;
    }
}
  
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes fade {
    0% {
        opacity: 0%;
    }
    100% {
        opacity: 100%;
    }
}

@keyframes partialFade {
    0% {
        opacity: 0%;
    }
    100% {
        opacity: 50%;
    }
}