@import url('https://fonts.googleapis.com/css2?family=Sekuya&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geom:ital,wght@0,300..900;1,300..900&display=swap');

:root {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html, body {
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    font-family: "Geom", sans-serif;
}

.navbar {
    padding-top: 8px;
    padding-bottom: 8px;
    text-align: center;
}

.navbarIcon {
    filter: invert(1);
    width: 28px;
    height: 28px;
    margin-right: 8px;
}

.navbarLinks {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.navbarLinks a {
    margin-right: 30px;
    text-decoration: none;
    color: white;
    font-family: "Geom";
    font-size: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.hero {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    height: 87vh;
    margin-top: 10px;
    margin-left: 60px;
    margin-right: 60px;
    background: linear-gradient(
        125deg,
        rgb(148, 33, 255),
        rgb(86, 0, 171),
        rgb(65, 0, 126)
    );
    background-size: 300% 300%;
    animation: gradientMove 12s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


.titleA {
    font-size: 90px;
    font-family: "Sekuya";
    margin: 0px;
    letter-spacing: 20px;
    font-weight: 800;
    color: white;
    transition: all 0.3s ease;
    cursor: default;
}

.titleB {
    font-size: 90px;
    font-family: "Sekuya";
    letter-spacing: 20px;
    color: white;
}

.titleB:hover {
    cursor: pointer;
}

.coolLetters {
    color: rgb(255, 255, 255); 
    transition: all 0.1s ease; 
}

.coolLetters:hover {
    font-size: 120px;
}

.titleSection {
    width: 700px;
    height: 700px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}


.titleSection hr {
    width: 70%;
    border-color: rgb(255, 255, 255);
}

.titleSection p {
    color: white;
    font-family: "Geom";
    font-size: 25px;
}

.sourcesContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 100px;
}

.sourcesContainer h2 {
    color: white;
    text-align: center;
    font-family: "Sekuya";
    margin-top: 50px;
    font-size: 70px;
    letter-spacing: 6px;
}

.sourceContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.callToAction {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}


.ctaLogo {
    width: 200px;
    height: 200px;
    border-radius: 9999px;
    outline: white solid 5px;
    border: black solid 5px;
    transition: all 0.3s ease;
}

.ctaLogo:hover {
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(1.1);
    outline: black solid 5px;
    border: white solid 5px;
}

.callToAction h3 {
    margin-top: 50px;
    color: white;
    font-family: "Geom";
    font-size: 30px;
    letter-spacing: 4px;
}

.callToAction p {
    color: white;
    font-family: "Geom";
    font-size: 20px;
}

.footer {
    text-align: center;
    margin: 0;
    padding: 8px;
    width: 100%;
    background-color: rgb(132, 0, 255);
    color: white;
    font-size: 20px;
    font-family: "Geom";
    margin-top: 80px;
}