body {
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: "Roboto", sans serif;
}
.navbar {
    width: 100%;
    background-color: white;
    border-bottom: 2px black;
    position: fixed;
}

.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;
}

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

.content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-image{
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
}

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

.link-container {
    text-align: center;
    font-size: medium;
}

p {
  font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 13px;
    text-decoration: none;
    color: black;
    text-align: center;  
    padding-bottom: 30px;
}



/* Tablet */
@media (max-width: 900px) {
.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;
}

p{
font-size: x-small;
}

.link-container {
    font-size: small;
}
}

/* Mobile */
@media (max-width: 600px) {
.container{
    gap: 0px;
}
.text{
    font-size: smaller;
    text-align: left;
}
.navigation {
    padding: 6px 6px;
}
.nav-link {
    font-size: small;
}
h2 {
    font-size: smaller;
}

p {
    font-size: x-small;
}

.link-container {
    font-size: small;
}
}