/* style.css */
/* ... (previous styles) ... */
@font-face {
    font-family: "Ubuntu Light";
    src: url("./font/Ubuntu-L.ttf");
  }

body{
    margin-left:20%;
    margin-right: 20%;
    font-family: "Ubuntu Light";
}

.tabs {
    display: flex;
    justify-content: flex-end;
}

.tabs li {
    margin-left: 15px;
    text-decoration: none;
    list-style: none;
}

.tabs a {
    text-decoration: none;
    color: #333;
    padding: 10px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.tabs a.active {
    background-color: #eee;
}

.tab-content {
    display: none; /* Initially hide all tab content */
    /* padding: 40px 0; */
    margin-left:2%;
    margin-right: 2%;
    border: solid lightgray;
    /*
    background-color: lightgray;
    border-left: solid gray;
    border-top: solid gray;
    */
    border-radius: 15px;
    height: 70vh;
    box-shadow: 5px 10px #888888;
    overflow-y:scroll; 
}

.container{
    padding-left: 2%;
    padding-right: 2%;
    padding-bottom: 2%;
    font-family: "Ubuntu Light";
    /*
    font-family: Times, "Times New Roman", Georgia, serif;
    font-family: "Lucida Console", Courier, monospace;
    font-family: Verdana, Arial, Helvetica, sans-serif; 
    font-family: "Lucida" Grande, sans-serif;
    */

}

#home {
    display: block; /* Show the home tab content by default */
}

/* Basic responsiveness */
@media (max-width: 768px) {
    .tabs {
        flex-direction: column;
        align-items: center;
    }

    .tabs li {
        margin: 10px 0;
    }
}

#logo_image{
    width:30%;
}

