/* CSS */
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&display=swap');

body {
  background-image: url("pelevatorBackground.png");
  background-repeat: repeat;
  background-size: 250px;
  font-family: "Cormorant";
  font-weight: 600;
  margin: 0;
  min-height: 100vh;
}

.container {
  display: flex;
  max-width: 800px;
  margin: 0 auto;
  min-height: 100vh;
}

.main-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 500px;
  margin: 20px auto;
  background: rgba(209, 229, 255, 0.55);
  padding: 5px 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

h1 {
  text-align: left;
}

p {
  font-size: 13pt;
}

/* .sidebar {
  width: 200px;
  background: rgba(209, 229, 255, 0.55);
  padding: 20px;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  border-radius: 10px;
  margin: 20px;
  max-height: 150px;
}

.sidebar nav a {
  display: block;
  padding: 10px;
  margin: 5px 0px;
  text-decoration: none;
  color: #333;
  border-radius: 5px;
}

.sidebar nav a:hover {
  background: #f0f0f0;
} */

