* {
    color: white;
    background-color: transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-style: normal;
    font-weight: 400;
    font-family: "Rajdhani", sans-serif;
    line-height: 1.3em;
}

html {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    background-color: #010609;
}

h1 {
    font-size: 0;
    font-weight: 700;
    text-transform: uppercase;
    color: transparent;
    background-image: url("img/logo-horizontal.svg");
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    min-width: 300px;
    aspect-ratio: 9/2;
}
@media (max-width: 650px) {
    h1 {
        min-width: 200px;
    }
}
@media (max-width: 350px) {
    h1 {
        min-width: 175px;
    }
}

a,
.p {
    font-size: 20px;
}

main {
    position: relative;
    overflow: hidden;
}
main::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("img/paint-texture.png");
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.1;
    z-index: 4;
    pointer-events: none;
}
main section {
    position: relative;
    z-index: 5;
}
main section.linkstack {
    padding-bottom: 75px;
}
main section.linkstack .spotlight {
    position: absolute;
    width: 150vw;
    aspect-ratio: 3/2;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
    max-width: unset;
}
main section.linkstack .spotlight.blue {
    background-image: -o-radial-gradient(
        rgba(45, 98, 112, 0.35),
        transparent,
        transparent
    );
    background-image: radial-gradient(
        rgba(45, 98, 112, 0.35),
        transparent,
        transparent
    );
    top: 50%;
    left: 10%;
}
main section.linkstack .spotlight.red {
    background-image: -o-radial-gradient(
        rgba(152, 75, 75, 0.4),
        transparent,
        transparent
    );
    background-image: radial-gradient(
        rgba(152, 75, 75, 0.4),
        transparent,
        transparent
    );
    top: 10%;
    left: 90%;
}
main section.linkstack * {
    width: 90%;
    max-width: 600px;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: auto;
}
main section.linkstack img {
    display: block;
}
main section.linkstack .hdr-row {
    margin-block: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 50px;
}
@media (max-width: 450px) {
    main section.linkstack .hdr-row {
        gap: 25px;
    }
}
main section.linkstack .hdr-row * {
    max-width: -moz-fit-content;
    max-width: -webkit-fit-content;
    max-width: fit-content;
    margin: 0;
}
main section.linkstack .hdr-row .btn {
    background-color: #fff;
    padding: 10px 25px;
    border-radius: 10px;
    color: #010609;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    max-height: -moz-fit-content;
    max-height: -webkit-fit-content;
    max-height: fit-content;
    margin-block: auto;
}
main section.linkstack .hdr-row .btn:hover,
main section.linkstack .hdr-row .btn:focus {
    background-color: rgb(152, 75, 75);
    color: #fff;
}
main section.linkstack nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}
main section.linkstack nav a {
    font-size: 25px;
    max-width: -moz-fit-content;
    max-width: -webkit-fit-content;
    max-width: fit-content;
    margin: auto;
}
main section.linkstack nav a.home {
    position: relative;
}
main section.linkstack nav a.home::before {
    content: "";
    width: 25px;
    aspect-ratio: 1/1;
    background-image: url("img/house.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    right: 100%;
    -webkit-transform: translateX(-15px);
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
}
main.thank-you {
    height: 100vh;
}
main.thank-you .linkstack .hdr-row {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    max-width: 100%;
}
main.thank-you .linkstack .hdr-row * {
    max-width: 90%;
    margin: auto auto 0;
    height: 100%;
}
@media screen and (min-width: 1024px) {
    main.thank-you .linkstack .hdr-row * {
        max-width: 70%;
    }
}
main.thank-you .stack {
    max-width: 100%;
}
main.thank-you .stack h2 {
    font-size: 25px;
    margin-bottom: 50px !important;
}
main.thank-you .stack p {
    font-size: 18px;
}
