* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #272a28;
    color: white;
}

.navbar{
    width: 100%;
    height: 70px;
    
    background-color: #152019;
    border-bottom: 1px solid #26352b;
    
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 30px;
}

.dashboard-button{
    background-color: #22c552;
    color: white;

    padding: 10px 18px;

    border-radius: 8px;
    text-decoration: none;

    font-weight: bold;
}

.dashboard-button:hover {
    background-color: #16a34a;
}

.bot-brand {
    display: flex;
    flex-direction: row;
    align-items: center;

    gap: 10px;

    color: white;
    text-decoration: none;
}

.bot-logo {
    width: 40px;
    height: 40px;

    border-radius: 20%;

    object-fit: cover;
}

.bot-name {
    font-size: 20px;
    font-weight: bold;
}

.hero-section {
    min-height: 600px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    padding-left: 180px;
    padding-right: 40px;
}

.hero-content {
    max-width: 650px;
}

.hero-content {
    transform: translateX(-80px);
}

.hero-brand {
    display: flex;
    align-items: center;

    gap: 18px;
}

.hero-logo {
    width: 90px;
    height: 90px;

    border-radius: 50%;
    object-fit: cover;
}

.hero-title {
    margin: 0;

    font-size: 52px;
    font-weight: bold;
}

.hero-description {
    margin-top: 20px;
    margin-bottom: 28px;

    font-size: 18px;

    color: #b7c3ba;
}

.hero-buttons {
    display: flex;

    gap: 12px;
}

.hero-open-button {
    display: inline-block;

    padding: 12px 20px;

    background-color: #22c55e;
    color: white;

    border-radius: 8px;

    text-decoration: none;
    font-weight: bold;

    transition: 0.2s;
}

.hero-open-button:hover {
    background-color: #16a34a;
}

.hero-learn-button {
    display: inline-block;

    padding: 12px 20px;

    background-color: #18251c;
    color: white;

    border: 1px solid #2f4736;
    border-radius: 8px;

    text-decoration: none;
    font-weight: bold;

    transition: 0.2s;
}

.hero-learn-button:hover {
    background-color: #223329;
}