
header {
    background-color: rgb(53, 53, 61);
    text-align: center;
    padding: 10px;
    min-height: 75px;
    margin-top: 0px;
    box-shadow: 5px 5px 3px darkgray;
}

.icon {
    text-align: left;
    width: 100px;
    float: left;
    align-items: center;
}

.box {
    text-align: left;
    width: 48%;
    min-height: 700px;
    padding-left: 7px;
    padding-top: 2px;
    margin-top: 50px;
    margin-bottom: 20px;
    margin-right: 20px;
    border: 1px solid rgb(91, 91, 91);
    background-color: lightgray;
    box-shadow: 5px 5px 3px darkgray;
    float: left;
}

.game-box {
    position: relative;
    text-align: left;
    width: 500px;
    min-height: 600px;
    padding: 15px;
    padding-top: 20px;
    margin-top: 50px;
    margin-bottom: 20px;
    margin-right: 20px;
    margin-left: 20px;
    border: 1px solid rgb(91, 91, 91);
    background-color: lightgray;
    box-shadow: 5px 5px 3px darkgray;
    float: left;
}

.card-box {
    position: relative;
    text-align: center;
    width: 350px;
    min-height: 300px;
    padding: 15px;
    padding-top: 20px;
    margin-top: 50px;
    margin-bottom: 20px;
    margin-right: 10%;
    margin-left: 10%;
    border: 1px solid rgb(91, 91, 91);
    background-color: lightgray;
    box-shadow: 5px 5px 3px darkgray;
    transition: background-color 0.3s ease;
}

.card-box:hover {
    background-color: #f0f0f0;
}

.disclamer-box {
    position: relative;
    text-align: left;
    width: 80%;
    min-height: 100px;
    padding: 15px;
    padding-top: 20px;
    margin-top: 50px;
    margin-bottom: 20px;
    margin-right: 10%;
    margin-left: 10%;
    border: 1px solid rgb(91, 91, 91);
    background-color: lightgray;
    box-shadow: 5px 5px 3px darkgray;
}

.games-page {
    text-align: center;
    max-width: 80%;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 50px;
    margin-bottom: 20px;
    margin-right: 10%;
    margin-left: 10%;
    border: 1px solid rgb(91, 91, 91);
    background-color: lightgray;
    box-shadow: 5px 5px 3px darkgray;
}

.advertizement {
    position: static;
    text-align: center;
    max-width: 60%;
    min-height: 200px;
    margin-left: 20%;
    padding: 20px;
    background-color: lightgrey;
    margin-top: 20px;
    margin-bottom: 20px;
}

.navbar {
    width: 60%;
    min-height: 100%;
    padding-left: 40%;
    align-items: center;
    float: right;
}

body {
    font-family: Arial, sans-serif;
    margin: 40px;
    background-image: -moz-linear-gradient(to bottom, #ffffff, #aeaeae);
  }

  .comment-box {
    width: 400px;
    margin-bottom: 20px;
  }

  .comment {
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    padding: 10px;
    margin-bottom: 10px;
  }

    .quest-box {
    width: 400px;
    margin-bottom: 20px;
  }

  .quest {
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    padding: 10px;
    margin-bottom: 10px;
  }

  textarea {
    width: 100%;
    height: 100px;
    margin-bottom: 10px;
  }

.nav {
  position: relative;
  float: right;
  padding-right: 20px;
  margin-top: 20px;
}

.header-button {
  background-color: #4facfe;
  color: white;
  padding: 10px 20px;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 40px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.header-button:hover {
  background-color: #00c3ff;
}

footer {
    background-color: rgb(53, 53, 61);
    color: white;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 97.2%;
    height: 40px;
    float: left;
    margin-right: 20px;
}

.logout-form {
    display: inline-block;
    margin-left: 10px;
}

.logout-button {
    background-color: #ff4444;
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.logout-button:hover {
    background-color: #cc0000;
}