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

:root {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    --default-size: 1080px;
}

body {
    margin: 0;
    padding: 0;
    background-image: linear-gradient(to bottom right, hsl(226, 79%, 8%), hsl(227, 64%, 24%));
    color: white;
    background-repeat: no-repeat;
    font-family: 'poppins';
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: white;
    font-weight: 200;
}

/*for flashing elements*/
flash {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: hsl(321, 93%, 48%);
    border-radius: 15px;
}

.circle {
    border-radius: 50%;
}

.navbar-list {
    position: relative;
    display: inline;
    position: absolute;
    left: 50%;
    top: calc(var(--default-size) * 1/25);
    transform: translate(-50%, 0);
    font-size: 1.25em;
    letter-spacing: 7px;
}

.blobs-background {
    margin-top: 20px;
    position: absolute;
    height: 6000px;
    width: 100vw;
    top: calc(var(--default-size) * 8/20);
    z-index: -1;
    left: 50%;
    transform: translate(-50%);
    overflow: hidden;
}

.blobs-background img {
    position: absolute;
    width: 100%;
    min-width: 1500px;
    height: 6108px;
    left: 50%;
    transform: translate(-50%);
}

.links {
    width: max-content;
}

.links.row {
    display: flex;
    flex-direction: row;
}

.links a {
    font-size: 1.2em;
    display: block;
    text-align: center;
    font-weight: 400;
    margin-block: 40px;
    border: 4px solid white;
    border-radius: 20px;
    padding: 5px;
    padding-inline: 10px;
    width: 200px;
}

.links.row a {
    margin-block: 0;
    margin-inline: 40px;
}

.highlight {
    font-weight: bolder;
    font-size: 1.5em;
    padding-block: 10px;
}

.example-video {
    border: 6px white dashed;
    border-radius: 60px;
}



/*
----------------------------------------------
First Section
----------------------------------------------
*/

.first-section-content {
    padding-inline: 5%;
    margin-top: 12%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.first-section-title {
    font-size: 6.3em;
    font-weight: 300;
    margin-top: 0px;
    margin-bottom: calc(var(--default-size) * 1/20);
}

.first-section-text {
    font-size: 1em;
    width: 30vw;
    margin-top: -2%;

}

.first-section-content .circle {
    width: 240px;
    height: 240px;
    margin-inline: auto;
    background-color: antiquewhite;
}

.first-section-content .right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;

}

.first-section-content .right .handles {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.twitter-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: hsl(197, 100%, 45%);
    font-weight: 700;
    margin-right: 15px;
}

.discord-logo {
    display: flex;
    flex-direction: row;
    color: hsl(236, 89%, 65%);
    font-weight: 700;
    align-items: center;
    margin-right: 15px;
}

.github-logo {
    display: flex;
    flex-direction: row;
    color: rgb(103, 103, 103);
    font-weight: 700;
    align-items: center;
}

.Twitter-icon,
.GitHub-icon,
.Discord-icon {
    margin-right: 5px;
}

/*
----------------------------------------------
Second Section - Empty space
----------------------------------------------
*/

.second-section {
    text-align: center;
    width: 600px;
    left: 50%;
    transform: translate(-50%);
}

.second-section h1 {
    font-size: 2.2em;
}

.second-section h2 {
    margin-top: -3%;
    font-size: 2em;
}

/*
----------------------------------------------
Third Section, Little -  The Programming Language
----------------------------------------------
*/

.third-section {
    position: absolute;
    top: calc(var(--default-size) * 28/20);
    padding-inline: 5%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10vw;
}

.third-section h1 {
    font-size: 6.3em;
}

.code-io {
    position: relative;
    top: -60px;
    display: flex;
    flex-direction: column;
    background-color: rgb(30, 30, 30);
    border-radius: 20px;
    padding: 20px;
    margin-top: 300px;
    height: fit-content;
}

.code-io iframe {
    width: 500px;
    height: 650px;
}

.third-section .data {
    position: relative;
    top: calc(var(--default-size) * 1/5);
    display: flex;
    flex-direction: row;
    align-items: center;
}

.third-section .data h1 {
    font-size: 3em;
}

/*
----------------------------------------------
Fourth Section, EZworksheet
----------------------------------------------
*/

.fourth-section {
    display: flex;
    position: absolute;
    top: calc(var(--default-size) * 49/20);
    padding-inline: 5%;
    width: 100%;
}

.fourth-content {

    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 30px;
    width: 100%;
}

.fourth-content .links {
    padding-top: 200px;
}

.fourth-content div {
    min-width: 30%;
}

.fourth-section .text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 50%;
}

.fourth-section .text-content h1 {
    font-size: 6.3em;
    margin-bottom: calc(var(--default-size) * 1/50);
}

.fourth-section .text-content p {
    text-align: justify;
}

.fourth-content .example-video {
    align-self: center;
    margin-top: 40px;
    height: calc(var(--default-size) * 1/4);
}

.fourth-section .links {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: 200px;
}

/*
----------------------------------------------
Fifth Section, Vision
----------------------------------------------
*/

:root {
    --card-gap: 1000px;
    --half-card-width: 800px;
}

.fifth-section {
    position: absolute;
    top: calc(var(--default-size) * 35/10);
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-inline: 5%;
    width: 90%;
}

.fifth-content h1 {
    font-size: 6.3em;
    text-align: center;
    margin-bottom: calc(var(--default-size) * 6/50);
    width: 100%;
}

/*
----------------------------------------------
Sixth Section, Cool Crad
----------------------------------------------
*/

.sixth-section {
    position: absolute;
    top: 500vh;
    height: 100vh;
}


@media screen and (max-width: 1400px) {}