body {
    margin: 0;
    background: rgb(0, 0, 92);
    font-family: 'Inter', sans-serif;
    color: white;
}

.top-main-nav {
    display: flex;
    align-items: center;
    padding: 0 24px;
    height: 70px;
    background: #353b82;
    border-bottom: 1px solid rgba(255, 255, 255, 0.328);
}

.nav-left {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-left a {
    color: white;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-left a:hover {
    color: rgb(155, 155, 255);
}

.login-bot {
    margin-left: auto;
    background: rgb(127, 104, 255);
    color: white;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
}

.login-bot:hover {
    background: #5865f2;
    transform: scale(1.03);
}

.main-infos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: calc(60vh - 70px);
    background: linear-gradient( to bottom, #242759, rgb(0, 0, 92));
    padding: 20px;
}

.main-infos h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    transition: transform 0.25s ease, color 0.25s ease;
}

.main-infos h1:hover {
    transform: scale(1.04);
    color: #ffd27a;
    cursor: pointer;
}

.main-infos h3 {
    margin-top: 0;
    max-width: 500px;
    color: #dda552;
    line-height: 1.5;
    font-weight: 400;
}

.main-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

#add-bot, #docs-bot {
    padding: 14px 24px;
    border: solid 2px;
    color: white;
    border-radius: 0.2cm;
    font-size: larger;
    font-weight: bolder;
    background-color: #24275900;
}

#add-bot a, #docs-bot a  {
    text-decoration: none;
    color: white;
}

#add-bot:hover {
    transform: scale(1.05);
    background-color: #dca44f4c;
    border-color: #dca44f;
    cursor: pointer;
}

#docs-bot:hover {
    transform: scale(1.05);
    background-color: #5865f25a;
    border-color: #5865f2;
    cursor: pointer;
}

.features {
    background-color: #0f1440;
    display: grid;
    grid-template-columns: repeat(4, 300px);
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.features > h2 {
    grid-column: 1 / -1;
    color: white;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.list-f {
    margin-top: 0.2cm;
    background-color: #1c204d;
    border: solid;
    border-color: #242858;
    width: 300px;
    border-radius: 0.3cm;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    margin-bottom: 0.5cm;
    transition: 0.2s ease;
    box-sizing: border-box;
}

.list-f-lorem {
    display: none;
}

.list-f p {
    margin-top: 0.1cm;
}

.list-f:hover {
    background-color: #1d2250;
    border-color: #2c326f;
    transform: scale(1.04);
}

@media (max-width: 1300px) {
    .features {
        grid-template-columns: repeat(2, 300px);
    }
}

@media (max-width: 700px) {
    .features {
        grid-template-columns: 1fr;
    }
    .list-f {
        width: 100%;
        max-width: 300px;
        justify-self: center;
    }
}

footer {
    background-color: #0f1440;
    text-align: right;
    margin-top: 0.3cm;
    padding: 4px;
    bottom: 0;
    position: relative;
    left: 0;
    right: 0;
}

footer a {
    margin-right: 0.3cm;
    color: white;
    cursor: pointer;
}