﻿header {    
    padding: 10px;
    padding-inline: 40px;
    text-align: center;
    bottom: 0;
}

nav {
    width: 100%;
    padding-inline: 5px;
    display: flex; 
    justify-content: space-between;
    align-content: center;
}

.nav-buttons-container {
    display: flex;
    flex-direction: row;
    align-items: center;

}

.nav-buttons {
    
    align-content: center;
  
}

.nav-button-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #1A084E;
    text-decoration: none !important;
}

.header-logo {
    height: 60px;
    width: auto;
}

@media only screen and (max-width: 768px) {
    .header-logo {
        height: 30px; 
        width: auto; 
    }

    header {
        background-color: #FDFDFD;
        padding: 20px;
        padding-inline: 20px;
        text-align: center;
        bottom: 0;
    }
}

a {
    text-decoration: none;
}




