@font-face {
    font-family: 'Beer'; /*a name to be used later*/
    src: url('BEER.TTF'); /*URL to font*/
}
@font-face {
    font-family: 'Rustling'; /*a name to be used later*/
    src: url('RUSTLING.otf'); /*URL to font*/
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    border: none;
    padding: 5px;
}

th {
    text-align: center;
}

.topbar {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}
.topbar-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.topbar-menu li {
    display: inline-block;
    margin-right: 20px;
}
.topbar-menu a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    display: block;
    font-weight: bold;
    font-size:0.95em;
}
.topbar-menu li:hover > .dropdown-content {
    display: block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    z-index: 1;
}
.dropdown-content a {
    color: white;
    padding: 12px 16px;
    display: block;
    text-align: left;
    text-decoration: none;
}
.dropdown-content a:hover {
    background-color: #555;
}

footer {
    position: relative !important;
}

.container-wrapper {
    min-height: 55em !important;
}

body {
    font-family: 'Verdana';
    letter-spacing: 2px;
}

.card {
    /*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);*/
    /*border:1px solid lightgrey;*/
    border-bottom:2px solid black;
    transition: 0.3s;
    width: 15em;
    margin: 20px;
    text-decoration: none;
    overflow: hidden;
  }

  /* Card image */
  .card img {
    width: 100%;
    height: auto;
  }

  /* Card content */
  .card-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Card title */
  .card-title {
    font-size: 16px;
    margin-bottom: 10px;
    color: #e60000;
    text-decoration: none;
    font-weight:bold;
  }

  /* Card description */
  .card-description {
    font-size: 16px;
    color: #555;
    text-decoration: none;
  }

  /* Upload button styles */
  .upload-btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
  }

  .btn {
    border: 2px solid #e74c3c;
    color: #e74c3c;
    background-color: transparent;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
  }

  .btn:hover {
    background-color: #e74c3c;
    color: white;
  }

  .upload-btn-wrapper input[type=file] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
  }

  /* Hover effect for upload button */
  .upload-btn-wrapper:hover .btn {
    background-color: #c0392b;
    border-color: #c0392b;
    color: white;
  }

  .upload-btn-wrapper:hover .btn:hover {
    background-color: #e74c3c;
  }

  .lAttribution {
    display: none !important;
  }