.hero-header {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

}

.logo {
    width: 208px;
    height: 107px;
}

.signup-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    padding: 14px 32px;
    border: 2px solid #ffffff;
    border-radius: 12px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    transition: all .2s ease;
}

.signup-btn:hover {
    background: rgba(255, 255, 255, .1);
    box-shadow: 0 0 10px rgba(255, 255, 255, .3);
}

@media (max-width: 800px) {

    .hero-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        width: 208px;
        height: 107px;
    }

    .signup-btn {
        margin-top: 0;
        padding: 10px 18px;
        font-size: 18px;
    }
}

.main-nav a {
    color: white;
    text-decoration: none;
}

.main-nav a:hover {
    color: #dddddd;
}