/* Basic reset */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: #0089f0;
}

body {
    /*height: 150vh;*/
    align-items: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: white;

}

header {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar {
    width: 100%;
    max-width: 1200px;
    display: flex;
    
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 10px;
}

.navbar-icon {
    width: 20%;
    display: flex;
    flex-direction: row;
}

.navbar-links {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 30px;
}


.navbar-links li {
    display: inline;
}

.navbar-links a {
    text-decoration: none;
    transition: color 0.3s ease;
    color: #0089f0;
    font-size: 16px;
}

.navbar-links a:hover {
    color: lightgray;
}

.content-frame {
    flex-grow: 1;
    border: none;
    width:  100%
    
}











@media (max-width: 768px) {
    body {
        /*height: 150vh;*/
       height: 150vh; 
    }    
    .navbar {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        
    }

    .navbar-links {
        display: flex;
        flex-direction: column;
        gap: 1px; /* Reduce gap between links */
    }

    .navbar-links li {
       width: 100%;
        display: flex;
        align-items: flex-end;
        
    }

    .navbar-icon {
        width: 40%;
        display: flex;
        align-items: flex-start;
        margin-bottom: 10px;
        vertical-align: middle;
    }

    .navbar-links a {        
        font-size: 12px;
        padding: 5px 0;
    }

   
}











@media (max-width: 480px) {
    body {
        /*height: 150vh;*/
       height: 150vh; 
    }    
    .navbar {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        
    }

    .navbar-links {
        display: flex;
        flex-direction: column;
        gap: 1px; /* Reduce gap between links */
    }

    .navbar-links li {
       width: 100%;
        display: flex;
        align-items: flex-end;
        
    }

    .navbar-icon {
        width: 40%;
        display: flex;
        align-items: flex-start;
        margin-bottom: 10px;
        vertical-align: middle;
    }

    .navbar-links a {        
        font-size: 12px;
        padding: 5px 0;
    }

   
}

