@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,700&display=swap');

:root {
    --pd: 20px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #252525;
    color: white;
}

.tos-title {
    font-size: x-large;
    line-height: 32px;
    font-weight: 600;
}

.tos-paragraph {
    font-size: medium;
    line-height: 24px;
    font-weight: 400;
}

.navbar {
    height: 50px;
    background-color: #252525;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.nav-item {
    display: flex;
    flex-wrap: wrap;
    gap: 80px 20px;
}

a {
    text-decoration: none;
    color: white;
    font-size: medium;
    font-weight: 400;
}

.app {
    padding-left: var(--pd);
    padding-right: var(--pd);
    height: 100%;
}

.main-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    align-items: center;
}

.main-title {
    font-size: 3rem;
    font-weight: 600;
    line-height: 48px;
    margin-bottom: 10px;
}

.add-bot-btn {
    background-color: #7289da;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: medium;
    font-weight: 400;
    cursor: pointer;
}