html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background-image: url("https://trxiiemei.neocities.org/bubblewrap.png");
  background-size: cover;
  background-position: center;
  font-family: "Times New Roman", serif;
  font-size: 16px;
  border: 7px dashed #D48933;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Title box with background */
.title-box {
  background: white;
  border: 3px solid #C4472D;
  border-radius: 10px;
  padding: 20px;
  width: 500px;
  position: relative;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  margin-bottom: 20px;
}

.title-box h1 {
  color: maroon;
  font-size: 32px;
  margin: 0 0 15px;
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.button-container button {
  border: 2px solid #C4472D;
  border-radius: 6px;
  padding: 5px 10px;
  background: white;
  color: #C4472D;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.button-container button:hover {
  background: #C4472D;
  color: white;
}

/* Main content box */
.main {
  border: 1px solid white;
  background-image: url("https://trxiiemei.carrd.co/assets/images/image02.jpg?v=0ecfb043");
  background-attachment: fixed;
  background-repeat: repeat;
  width: 600px;
  height: 450px;
  padding: 10px;
  position: relative;
  z-index: 4;
  box-shadow: 0 0 0.5rem 0.5rem #FFFFFF;
  text-align: center;
}

.main p {
  color: maroon;
  font-size: 14px;
}

.main img {
  max-width: 100%;
  height: auto;
  margin-top: 10px;
}

/* Section */
.section {
  font-family: jojoba;
  font-size: 1em;
  color: black;

  width: 330px;
  height: 250px;
  padding: 5px;

  background: white;
  border: 3px solid #C4472D;
  overflow-y: scroll;

  animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/* Button container */
.buttoncontaner {
  position: absolute;
  top: 10em;
  left: 21.875em;
  z-index: 5;

  width: 100px;
  height: 200px;
}

button {
  width: 50px;
  height: 50px;
  padding: 3px;

  background: white;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  border-left: none;
  border-radius: 0 10px 10px 0;
}

/* Typography */
h1 {
  color: maroon;
  font-size: 36px;
  text-align: center;
}

p {
  color: maroon;
  font-size: 12px;
  text-align: left;
}

a {
  color: maroon;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: gold;
}

/* Links section */
ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin-top: 20px;
}

ul li a {
  font-weight: bold;
  color: #C4472D;
  text-decoration: none;

  padding: 5px 10px;
  border: 2px solid #C4472D;
  border-radius: 6px;

  transition: 0.3s;
}

ul li a:hover {
  background: #C4472D;
  color: white;
}
