@import url('https://fonts.googleapis.com/css2?family=New+Amsterdam&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: left;
}

body {
    font-family: 'New Amsterdam', sans-serif;
    margin: 0;
    text-align: left;
    background-color: #A08674;
}

p {
  font-size: 1.5vw;
  color: #111;
  margin-top: 50px;
  margin-bottom: 50px;
  margin-right: 150px;
  margin-left: 80px;
  margin: 2vw;
  padding: 2vw;
}

h2 {
    width: 100%;
    text-align:center;
    color: #111;
    font-size: 2.5vw;
}

.logoimg {
    position: fixed;
    top: 2.0vw;
    left: 0;
    margin-top: 0vw;
    margin-left: 2vw;
}

.logoimg img {
    width: 6vw;
    height: auto;
}

.logoimg h3 {
    color: #111;
    font-size: 7vw;
    text-align: top;
}

nav {
    font-family: 'New Amsterdam', sans-serif;
    position: fixed;
    top: 0.0vw;
    right: 0vw;
    width: 100%;
    height: 7vw;
    display: flex;
    justify-content: flex-end;
    background-color: rgba(255, 255, 255, 0);
    padding: 20px 40px;
    z-index: 1000;
    transition: background-color 0.5s ease, color 0.5s ease;
    font-size: 2vw;
    font-weight: bold;
}

nav a {
    color: #bbb;
    text-decoration: none;
    margin-top: 1.0vw;
    margin-left: 2vw;
    font-size: 2vw;
    transition: color 0.5s ease;
}

nav a:hover {
    color: #fff;
}

nav.scrolled {
    background-color: #111;
    color: #fff;
}

nav.scrolled a {
    color: #fff;
}

.image img {
    width: 100%;
    height: auto;
    overflow: scroll;
}

.image h1 {
    position: absolute;
    top: 11vw;
    left: 50vw;
    transform: translate(-50%, -50%);
    z-index: 1001;
    color: #332200;
    font-size: 7vw;
    text-align: center;
    opacity: 0;
    transition: opacity 2s ease-in;
}
