body {
    margin: 0;
    font-family: "Roboto", sans serif;
    padding-top: 40px;
}

h2 {
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    text-decoration: none;
    color: black;
    border-bottom: none;
    margin: 0;
}

.navbar {
    width: 100%;
    background-color: white;
    position: fixed;
    top: 0;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 3px;
}

.nav-link {
    text-decoration: none;
    color: black;
    font-weight: 600;
    font-size: medium;
}

footer {
   text-align: center;
   padding: 15px 0;
   font-size: 10px;
}

a {
    text-decoration: none;
    color: black;
}

a.container{
    display: flex;
    align-items: center;
    width: 100%;
}
.container {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin-bottom: 10px;
}

.image {
    flex: 2;
    min-width: none;
}

.image img {
    width: 100%;
    height: auto;
    display: block;
}

.text {
    font-size: 1.2em;
    flex: 1;
    text-align: right;
}




/* Tablet */
@media (max-width: 900px) {
body {
    padding-top: 37px;
}

    .container{
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
}
.text{
    text-align: left;
    width: 100%;
    font-size: small;
}
.navigation {
    padding: 10px 8px;
}
h2 {
    font-size: small;
}
}

/* Mobile */
@media (max-width: 600px) {
body {
    padding-top: 27px;
}

.container{
    gap: 0px;
}
.text{
    font-size: smaller;
    text-align: left;
}
.navigation {
    padding: 6px 6px;
}
.nav-link {
    font-size: small;
}
h2 {
    font-size: smaller;
}
}