@font-face {
    font-family:'Pixel';
    src: url(../fonts/Pixel.otf)
}  

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

a:hover {
  text-decoration: underline;
}

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

body {
    font-family: 'Pixel';
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    
    background-image: url("plant.jpg");
  background-size: cover;     
  background-position: center; 
  background-repeat: no-repeat;
  }

.wrapper {
  width: 100%;
  max-width: 800px;
  height: 90vh;
  display: flex;
  flex-direction: column;
}

.menu {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 0.9rem;
}

.menu a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.2s ease;
}

.menu a:hover {
  color: white;
}

.writing-block {
  flex: 1;
  height: 100%;
  padding: 1.5rem;

  background: rgba(0, 0, 0, 0.6); 
  color: #f1f1f1; 

  border-radius: 0; 
  overflow-y: auto;

  line-height: 1.6;
}


  @media (max-width: 600px) {
    .wrapper {
      height: 100vh;
      padding: 0.5rem;
    }

    .writing-block {
      border-radius: 8px;
      padding: 1rem;
    }
  }