.site-header {
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo a{
    height: 70px;
    display: flex;
    align-items: center;
}

.site-logo img {
    height: 100%;
    width: auto;
}

.main-navigation {
    display: flex;
    gap: 20px;
    align-items: center;
}

.main-navigation a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    font-size: 20px;
    padding: 8px 16px;
    border-radius: 4px;
    background-color: #6A0DAD;
}

.main-navigation a:hover {
    transition: background-color 0.3s;
    color: black;
    background-color: #D8BFD8; 
}

@media (max-width: 1500px) {
}

@media (max-width: 992px){
}

@media (max-width: 768px) {
    .main-navigation {
        display: none;
    }

    .site-header {
        padding: 5px 10px;
    }

    .site-logo {
        height: 50px;
    }
}