/* styles.css */
body {
    background-image: url('bg.jpg');
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

.main-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.vertical-center {
    justify-content: center;
    min-height: 100vh;
}

.tab {
    display: flex;
    justify-content: left;
    align-items: left;
    margin-bottom: 0px;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-radius: 1%;
}

.tab button {
    background-color: #fff;
    float: left;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.tab button:hover {
    background-color: #fff;
}

.tab button.active {
    background-color: #fff;
}

.tabcontent {
    background-color: #ffffff;
    display: none;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2%;
    border-radius: 1%;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
}

.main-title, .title, .footer {
    text-align: center;
    font-weight: bold;
    margin: 10px 0;
}

.logo img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.paragraph {
    text-align: justify;
    margin: 20px 0;
}

.title {
 text-align: left;
}

.title-font {
 font-size: 1.5em;
 font-family: "Roboto", serif;
 font-optical-sizing: auto;
 font-weight: bold;
 font-style: normal;
 font-variation-settings: "wdth" 100;
}

.paragraph-font {
 font-size: 1em;
 font-family: "Roboto", serif;
 font-optical-sizing: auto;
 font-weight: normal;
 font-style: normal;
 font-variation-settings: "wdth" 100;
}

a:link {
  color: #0064be;
  font-weight: bold;
  text-decoration: none;
}

a:visited {
  color: #0064be;
  font-weight: bold;
  text-decoration: none;
}

a:hover {
  color: #0064be;
  font-weight: bold;
  text-decoration: none;
}

a:active {
  color: #0064be;
  font-weight: bold;
  text-decoration: none;
}

/* Media Queries */
@media (max-width: 600px) {
    .tab {
        flex-direction: column;
        align-items: stretch;
    }

    .tab button {
        width: 100%;
        margin-bottom: 10px;
    }

    .title-font {
        font-size: 1.2em;
    }

    .paragraph-font {
        font-size: 0.9em;
    }

    .image-bar img {
        width: 80px;
        height: 80px;
    }
}
