.main_body {
    background-color: rgb(21, 22, 30);
}

#header {
    font-family:'poppins', sans-serif;
    font-weight: 400;
    display: flex;
    align-items: center;
    padding: 10px 50px;
    background-color: #e3e2e9;
    border-radius: 10px;
    gap: 20px;
    height: 4vh;
    margin: 10px 20px;
    position: sticky;
    top: 0;
}

#logo {
    height: 8vh;
    width: 8vh;
}

#divider{
    flex-grow: 1;
}

#hero_section {
    text-align: center;
    height: 100vh;
    background-color: #1b1b1b;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px;
}

#hero_text {
    color: white;
    font-size: 1.5em;
    margin-top: 20vh;
    margin-bottom: 5vh;
    line-height: 1.35em;
    width: 50vw;
    position: relative;
    font-family:'poppins', sans-serif;
    font-weight: 300;;
}

#hero_button {
    background-color: #2b597f;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1em;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family:'poppins', sans-serif;
    font-weight: 300;
}

#hero_button:hover {
    background-color: #3b79af;
    scale: 1.025;
}

#contact_button{
    cursor:pointer;
}