* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.layout{
    background: linear-gradient(135deg, #3a6186, #89253e);
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    background: linear-gradient(135deg, #3a6186, #89253e);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: white;
    font-weight: bold;
}
.sidebar{
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 70vw;
    background: linear-gradient(135deg, #3a6186, #89253e);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sidebar {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #333;
}


.navbar-hamburger{
    display: none;
}

.navbar .logo {
    font-size: 1.2em;
}

.nav-links a, .sidebarLinks a{
    color: white;
    margin-left: 20px;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover, .navbar-hamburger a:hover {
    color: #ffedc1;
}

.navbarBuffer {
    height: 60px;
}

.container {
    padding: 20px;
    margin-top: 40px;

}

.header-section h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #3a6186;
    text-align: center;
    line-height: 1.3;
}

.content-section h2 {
    font-size: 1.8em;
    margin-top: 20px;
    color: #333;
    border-bottom: 2px solid #89253e;
    padding-bottom: 5px;
}

.content-section p {
    margin: 15px 0;
    font-size: 1.1em;
}


.signupButton, .layout{
    background: linear-gradient(135deg, #3a6186, #89253e);
}
.signupButton{
    padding: 10px;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    margin: 10px;
    position: fixed;
    bottom: 0;
    right: 0;
}
.signupButton:hover{
    font-size: larger;
    transition: .3s;

}

.sidebarLinks{
    margin-top: 50px;
    display: flex;
    flex-direction: column;
}
.sidebarHamburger{
    margin-right: 30px;
    margin-top: 10px;
}
.sidebarLinks a {
    font-size: 30px;
    font-weight: bold;
}

.navbar-hamburger, .sidebarHamburger{
    height: 100%;
    aspect-ratio: 1/1;
    border: none;
    font-size: 30px;
    background-color: transparent;
    color: white;
}

@media (max-width: 600px) {
    .navbar{
        padding-left: 20px;
        padding-right: 0px;
    }
    .nav-links{
        display: none;
    }
    .sidebar{
        width: 70vw;
    }


    .navbar-hamburger{
        display: block;

    }
    
}


.footer-section {
    color: #333;
    padding: 20px 0;
    font-size: 14px;

}

.footer-content {
    display: flex;
    justify-content: space-around;
    max-width: 700px;
    margin: 0 auto;
    align-content: center;

}

.footer-column {
    flex: 1;
    padding: 0 15px;
}

.footer-column h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-column p, .footer-column ul {
    margin: 0;
    line-height: 1.6;
}

.social-links, .footer-links {
    list-style: none;
    padding: 0;
}

.social-links li, .footer-links li {
    margin: 5px 0;
}

.social-links a, .footer-links a {
    color: #333;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 10px;
}
