@import url("fonts.css");

html, body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

p {
  margin: 0;
}

body {
  width: 100dvw;
  display: flex;
  justify-content: center;
}

main {
  margin-top: 100px;
  width: 1100px;
  background-color: #69347e;
  position: relative;
  z-index: 1;
  height: 800px;
  display: flex;
  flex-direction: column;
}

#website-background {
  position: absolute;
  z-index: 0;
}

#website-background img {
  width: 100dvw;
  height: 101vh;
}

img {
  width: 300px;
}

#top-bar {
  display: flex;
  justify-content: space-between;
  padding: 5px;
  outline: 3px solid gray;
  margin: 3px 3px 0px 3px;
  height: fit-content;
  width: 100%-6px;
}

#right-top-bar {
  padding: 5px;
  outline: 3px solid gray;
  display: flex;
  align-items: center;
}

#right-top-bar img {
  width: 36px;
}

#right-top-bar:hover {
  cursor: pointer;
  background-color: rgba(128, 128, 128, 0.075);
}

#left-top-bar {
  display: flex;
  flex-direction: row;
}

.top-bar-button {
  outline: 3px solid gray;
  padding: 5px;
  text-align: center;
  width: 190px;
}

.top-bar-button p {
  font-family: Old-English-Text-MT;
  font-size: 30px;
  color: #e0dcda;
}

.top-bar-button:hover {
  cursor: pointer;
  background-color: rgba(128, 128, 128, 0.075);
}

#me {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  outline: 3px solid gray;
  margin-top: 8px;
}