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

body {
    font: 16px #020202;

}

.playwrite-cu-title {
  font-family: "Playwrite CU", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

header {
    position: fixed;
}

/*Menu BTN*/
.menu-container {
    position: relative;
  }
  
  .menu {
    height: 100%;
    width: 100vw; /* Width of the sliding menu */
    position: fixed;
    top: 0;
    left: -100vw; /* Hide menu off-screen */
    background-color: #111;
    overflow-x: hidden;
    transition: 0.3s; /* Smooth slide transition */
    padding-top: 60px;
    z-index: 1;
  }
  
  .menu a {
    padding: 8px 16px;
    text-decoration: none;
    font-size: 25px;
    color: white;
    display: block;
    transition: 0.3s;
  }
  
  .menu a:hover {
    background-color: #575757;
  }
  
  .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }
  
  .openbtn {
    font-size: 20px;
    cursor: pointer;
    padding: 10px 15px;
    background-color: #111;
    color: white;
    border: none;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
  }
  
  .openbtn:hover {
    background-color: #575757;
  }

  tile {
    border: 1px solid #020202;
  }

  .txtCenter {
    text-align:center;
  }

  body {
    font-family: Arial, sans-serif;
  }

  /*Modal*/
  
  .modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
  }
  
  .modal-content {
    background-color: #fefefe;
    margin: 15% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 80%; 
  }
  
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  
  form {
    display: flex;
    flex-direction: column;
  }
  
  label {
    margin-top: 10px;
  }
  
  input, textarea {
    padding: 10px;
    margin: 5px 0 10px;
  }
  
  button {
    background-color: #4CAF50; 
    color: white; 
    padding: 10px;
    border: none;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #45a049;
  }