:root {
    --text: #ffffff;
    --background: #000000;
    --main: #6365EF;
    --darker: #4238C9;
    --lighter: #A5B4FD;
    --grey: #282828;
    --window: #151515;
    --invert: #000000;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI";
    background-color: var(--background);
    color: var(--text);
}

.bg-img {
    position: absolute;
    z-index: -5;
    max-width: 100%;
    width: 100vw;
    height: auto;
}

/*Usable default center using flex*/
.flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

/*Usable flex column*/
.column {
    flex-direction: column;
}

/*Usable flex row*/
.row {
    flex-direction: row;
}

.left {
    align-items: flex-start;
}

.right {
    align-items: flex-end;
}

/*Usable Outline of text*/
.reverse {
    color: transparent;
    -webkit-text-stroke: 3px var(--main);
}

/*Usable text gradient*/
.text-gradient {
    background: #4238C9;
    background: linear-gradient(to bottom right, #4238C9 0%, #6365EF 50%, #A5B4FD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sideNote {
    color: #949494;
    font-size: clamp(12.5px, 1.75vw, 20px);
    text-align: center;
}

.spacing {
    padding: 0px 15vw 0px 15vw;
}

.hero {
    text-align: center;
    height: 90vh;
    font-size: 6vw;
}

hr {
    width: 60vw;
    height: 1px;
    border-color: var(--grey);
}

.simple-text {
    text-align: center;
    flex-direction: column;
}

@media screen and (min-width: 700px) {
    .text-box {
        font-size: 2.5vw;
        width: 50vw;
    }
}

@media screen and (max-width: 700px) {
    .text-box {
        font-size: 5vw;
        width: 60vw;
    }
}





.container {
    width: 80vw;
    display: grid;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    grid-auto-flow: row;
}

@media screen and (min-width: 1100px) {
    .container {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
}

@media screen and (max-width: 626px) {
    .container {
        grid-template-columns: repeat(1, 1fr);
    }
}

.box1 {
    gap: 5vw;
    padding: 0vw 5vw 0vw 5vw;
    flex-direction: row;
    min-height: 40vh;
}

@media screen and (max-width: 626px) {
    .box1 {
        flex-direction: column;
    }
}

.box-small {
    background-color: var(--window);
    border-radius: 25px;
    grid-column: span 2;
}

@media screen and (max-width: 626px) {
    .box-small {
        grid-column: span 4;
    }
}

.box-big {
    background-color: var(--window);
    border-radius: 25px;
    grid-column: span 4;
}

.short {
    width: 80%;
    text-align: center;
    margin-top: auto;
}

@media screen and (max-width: 626px) {
    .long {
        width: 80%;
        text-align: center;
    }
}

.zoom {
    overflow: hidden;
}

.radius {
    border-radius: 50px;
}

.img {
    max-height: 100%;
    height: 30vh;
    width: auto;
    display: block;
    margin-top: auto;
    object-fit: cover;
    transition: all .3s ease;
}

.img:hover {
    transform: scale(1.1);
}

.based {
    max-width: 100%;
    width: 40vh;
    height: auto;
    display: block;
    border-radius: 50px;
    object-fit: cover;
    transition: all .3s ease;
}

.based:hover {
    transform: scale(1.2);
}




.loop {
    width: 100%;
    background-color: var(--main);
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: flex;
    overflow: hidden;
}

.loop-content {
    min-width: 100%;
    flex: none;
    justify-content: space-around;
    display: flex;
}

.text-block {
    color: var(--invert);
    text-transform: uppercase;
    font-size: 9vw;
    font-weight: 900;
    line-height: 1;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 1rem));
    }
}

.scroll {
    animation: scroll 10s linear infinite;
}


/*anoeye section*/
.anoContent {
    width: 80vw;
}

.aboutAno {
    flex: 1;
    padding-left: 10vw;
}

.aboutAno h1 {
    font-size: 4vh;
}

.aboutAno p {
    width: 80%;
    font-size: 2.5vh;
}

.imgAno {
    height: 100%;
    flex: 1;
}

.anoImg {
    width: 30vw;
    height: auto;
}

@media screen and (min-width: 770px) {
    .anoContent {
        flex-direction: row;
    }

    .anoImg {
        width: 30vw;
        height: auto;
    }
}

@media screen and (max-width: 770px) {
    .anoContent {
        flex-direction: column;
        gap: 10vh;
    }

    .anoImg {
        width: 50vw;
        height: auto;
    }
}




@media screen and (min-width: 700px) {
    footer {
        font-size: 4vw;
        text-align: center;
        margin: 0;
        padding: 0;
    }
}

@media screen and (max-width: 700px) {
    footer {
        font-size: 5.5vw;
        text-align: center;
    }
}

/* Modal styles */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.8);
    /* Black background with opacity */
    transition: opacity 0.5s ease-in-out;
    /* Fade-in effect */
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1000px;
    /* Adjust based on your needs */
    animation: fadeIn 0.5s ease-in-out;
    /* Smooth fade-in */
}

/* The Close Button */
.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}







/*Links CSS*/

/*underline animation*/
.link {
    color: var(--main);
    -webkit-text-stroke: 1px var(--main);
    text-decoration: none;
    position: relative;
}

.link::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--main);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.link:hover::before {
    transform: scaleX(1);
}

/*Button*/
.button {
    color: var(--text);
    text-decoration: none;
    border: var(--window) 5px solid;
    border-radius: 150px 150px 150px 150px;
    background-color: var(--window);
    font-size: 1.25rem;
    padding: 1.5rem;
    transition: ease .5s;
}

.button:hover {
    background-color: var(--main);
    border: var(--main) 5px solid;
    transition: ease .5s;
}

/*Button 2*/
.link-button {
    color: var(--text);
    text-decoration: none;
    border: var(--text) 2px solid;
    border-radius: 150px 150px 150px 150px;
    background-color: transparent;
    font-size: 1rem;
    padding: 1rem;
    transition: ease .5s;
}

.link-button:hover {
    background-color: var(--text);
    border: var(--text) 2px solid;
    transition: ease .5s;
    color: var(--invert);
}

/*Normal Link*/
.link-normal {
    color: var(--text);
    text-decoration: none;
    font-size: 1.25rem;
    transition: ease .5s;
}

.link-normal:hover {
    color: var(--main);
    transition: ease .5s;
}

/*Clean White button*/
.cleanButton {
    text-decoration: none;
    color: #000;
    background-color: #fff;
    padding: 1vw 2vw 1vw 2vw;
    border-radius: 10px;
    transition: all ease-in-out 0.3s;
}

.cleanButton:hover {
    background-color: #6365EF;
    color: #fff;
    transition: all ease-in-out 0.3s;
}

.brettButtons {
    text-decoration: none;
    color: #949494;
    font-size: clamp(10px, 1.75vw, 20px);
    font-weight: bold;
    padding: clamp(12px, 1.75vw, 18px);
    border: #949494 2px solid;
    border-radius: 150px 150px 150px 150px;
    margin: 5px;
}