@font-face {
    font-family: 'Poppins';
    src: url(assets/font/Poppins-Medium.ttf);
}
* {
    font-family: 'Poppins';
    margin: 0;
    padding: 0;
    transition: 500ms;
    scroll-behavior: smooth;
}
body, html {
    height: 100%;
    width: 100%;
}
body {
    background-color: #0F1114;
}
.nav-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    color: white;
    padding: 20px;
}
.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.logo img {
    width: 50px;
    height: 50px;
}
.links a {
    color: white;
    text-decoration: none;
    margin: 10px;
}
.links a:hover {
    color: #8a2be2;
}
.logo p {
    font-size: 25px;
    font-weight: 900;
    margin-left: 10px;
}
.main {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.main-text {
    margin-top: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.main-text h1 {
    font-size: 3rem;
    font-weight: 900;
}
.main-text span {
    color: rgb(160, 160, 160);
    font-size: 1.25rem;
}
.download {
    margin-top: 3%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: blueviolet;
    padding: 0px 32px;
    border-radius: 10px;
    font-size: 0.875rem;
    height: 2.75rem;
    color: white;
    text-decoration: none;
    gap: 10px;
}
.download:hover {
    background-color: rgb(112, 35, 184);
}
.key-features {
    margin-top: 10%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.feature-container {
    max-width: 1344px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    margin-top: 1.5%;
}
.feature {
    color: rgb(173, 173, 173);
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #16181D;
    width: 250px;
    height: 100px;
    border-radius: 10px;
    padding: 20px;
    font-size: 0.875rem;
}
.feature h1 {
    font-size: 1.5rem;
    color: white;
}
.socials {
    margin-top: 10%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.socials span {
    color: rgb(173, 173, 173);
}
.social-buttons {
    margin-top: 1%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.social {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-size: 1.1rem;
    color: #ffffff;
}
.social svg {
    width: 25px;
    height: 25px;
    margin-right: 10px;   
}
.discord {
    background-color: blueviolet;
}
.github {
    background-color: #1F2937;
}
.discord:hover {
    background-color: rgb(125, 41, 204);
}
.github:hover {
    background-color: #243041;
}
.footer {
    margin-top: 7%;
    width: 100%;
    border-color: rgb(31 41 55 / 1);
    border-top-width: 1px;
    border-top-style: solid;
}
.footer-text {
    color: rgb(145, 145, 145);
    margin-top: 2%;
    margin-bottom: 2%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    gap: 5px;
}
.status {
    height: 300px;
    background-color: #111827;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    color: white;
    border-radius: 10px;
    width: 90%;
    padding: 30px;
}
.status .title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.status h2 {
    font-size: 1rem;
    font-weight: 100;
}
.status h3 {
    display: flex;
    flex-direction: row;
    gap: 10px;
    font-weight: 100;
    font-size: 0.9rem;
}
.status .title .icon {
    stroke: blueviolet;
}
.status .buttons a {
    text-decoration: none;
    color: blueviolet;
    font-weight: 100;
    font-size: 0.9rem;
    border: 1px solid blueviolet;
    padding: 10px 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.status .buttons a:hover {
    background-color: blueviolet;
    color: white;
}
.status .buttons svg {
    width: 1.25rem;
    height: 1.25rem;
}
@media screen and (max-width: 800px) {
    .status {
        width: 80%;
    }
}
@media screen and (max-width: 1250px) {
    .feature-container {
        width: 100%;
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
    }
}
@media screen and (max-width: 900px) {
    .main-text h1 {
        font-size: 2rem;
    }
    .main-text span {
        font-size: 0.8rem;
    }
    .download {
        margin-top: 15%;
    }
}
@media screen and (max-width: 600px) {
    .feature-container {
        width: 100%;
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .main-text h1 {
        font-size: 1.5rem;
    }
    .main-text span {
        font-size: 0.6rem;
    }
    .download {
        display: none;
    }
    .key-features h1 {
        font-size: 1.5rem;
    }
    .key-features {
        margin-top: 10%;
    }
    .feature {
        width: 200px;
        height: 100px;
        font-size: 0.75rem;
    }
    .feature h1 {
        font-size: 1.25rem;
    }
    .social-buttons {
        flex-direction: column;
    }
    .social {
        font-size: 0.8rem;
    }
    .footer-text {
        font-size: 0.8rem;
    }
}
@media screen and (max-width: 480px) {
    .status {
        height: 200px;
    }
    .status .title h1 {
        font-size: 1.5rem;
    }
    .status h2 {
        font-size: 0.8rem;
    }
    .status h3 {
        font-size: 0.7rem;
    }
    .status .buttons a {
        font-size: 0.7rem;
    }
}
@media screen and (max-width: 380px) {
    .status .title h1 {
        font-size: 1.2rem;
    }
    .status h2 {
        font-size: 0.7rem;
    }
    .status h3 {
        font-size: 0.6rem;
    }
    .status .buttons a {
        font-size: 0.6rem;
    }
    .status .buttons svg {
        width: 1rem;
        height: 1rem;
    }
    
}
@media screen and (max-width: 450px) {
    .main-text h1 {
        width: auto;
        text-align: center;
    }
    .main-text span {
        display: none;
    }
    .nav-bar {
        flex-direction: column;
    }
    .links {
        margin-top: 4%;
        flex-direction: column;
    }
}