@font-face {
    font-family: 'Jost';
    src: url('font/jost-variable.ttf') format('truetype-variations');
    font-weight: 400;
    font-style: normal;
}

* {
    font-family: 'Jost', Arial;
}

body, html {
    padding: 0;
    margin: 0;
}

body {
    background-color: #191a21;
}

p {
    color: white;
}

button {
    outline: none;
    border: none;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #4CFFC6;
    font-size: 18px;
    color: black;
    border-radius: 10px;
    cursor: pointer;
}

#content {
    width: 55%;
    margin: 0 auto;
    margin-top: 15vh;
    height: 60vh;
    border-radius: 25px;
    position: relative;
}

.content-banner {
    height: 70%;
    background-size: 100%;
    border-radius: 25px 25px 0 0;
    background-repeat: no-repeat;
    background-color: #28283B;
}

.content-text {
    padding-left: 40px;
    z-index: 2;
}

.content-karl {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    display: flex;
}

.content-karl img {
    margin-left: auto;
    padding-right: 50px;
    width: 50%;
}

/* Don't show Karl popup when screen size is small (not enough space) :( */
@media (max-width: 768px) {
    .content-karl {
        display: none;
    }
}

.content-title {
    font-size: 25px;
    margin-bottom: 4px;
    margin-top: 32px;
    font-weight: 800;
}

.content-description {
    font-size: 18px;
    opacity: 80%;
    margin-bottom: 0;
    margin-top: 0;
    padding-right: 25px;
}

.content-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #28283b;
    border-radius: 0 0 25px 25px;
    display: flex;
    flex-direction: column;
}

.content-installers {
    display: flex;
    margin: 30px;
    gap: 15px;
    padding-left: 10px;
}

.content-installers a:not(:first-of-type) > button {
    background-color: rgba(0.2, 0.2, 0.2, 0.2);
    border: 3px solid rgba(76, 255, 198, 0.5);
    color: white;
    box-sizing: border-box;
}

.content-installers a:first-of-type > button {
    border: 3px solid rgba(76, 255, 198, 1.0);
}

.content-installers button {
    cursor: pointer;
    z-index: 10;
    transition: transform 0.2s;
}

.content-installers button:hover {
    transform: scale(1.05);
}

.installer-link {
    z-index: 2;
}

#footer {
    position: absolute;
    bottom: 0;
    background-color: #0c0e15;
    width: 100%;
    padding: 25px 50px 25px 30px;
    box-sizing: border-box;
}

.footercontent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-items: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .footercontent {
        flex-direction: column;
        row-gap: 15px;
    }

    .footer-discord {
        margin: 0;
    }
}

.tutlinks {
    display: flex;
    flex-direction: column;
}

#footer p {
    font-size: 24px;
    opacity: 50%;
    margin: 0;
}

.footer-karl-stripe {
    padding-left: inherit;
    padding-right: inherit;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 15%, rgba(76, 255, 198, 1) 50%, rgba(255,255,255,1) 85%, rgba(255,255,255,0) 100%);
    height: 3px;
    width: 100%;
}

.footer-discord {
    margin-top: 5px;
    height: 35px;
}

.tutorial-section {
    background-color: #28283B;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 100px;
    padding-bottom: 50px;
}

.tutorial-img {
    width: 90%;
    border-radius: 15px;
    margin: 55px 15px;
}

.mini-img {
    width: 50%;
}

.double-image {
    display: flex;
}

.tut-link {
   font-size: 18px;
   color: #4CFFC6;
   opacity: 100%;
   text-decoration: none;
}

.tutorial-page {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 15vh;
    font-size: 20px;
}

.tutorial-options {
    justify-content: center;
    display: flex;
    width: 80%;
    margin: 0 auto;
    padding-top: 25px;
    padding-bottom: 20vh;
}

.tutorial-select {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    background-color: #28283B;
    border-radius: 5px;
    margin: 15px;
    padding: 50px;
    font-size: 20px;
}

.tutorial-image {
    margin-top: 15px;
    max-width: 100%;
    border-radius: 15px;
}

.button-confirm-green:hover {
    background-color: #4CFFC6;
    transition: 0.3s;
    transform: translate(0px, -5px);
}

.button-confirm-green:hover p {
    color: black;
    transition: 0.3s;
}

.button-confirm-red:hover {
    background-color: #ff4c4c;
    transition: 0.3s;
}

.button-confirm-red:hover p {
    color: black;
    transition: 0.3s;
}