body {
    margin: 0;
    padding: 0;
    display:flex;
    font-family: sans-serif;
}

.background{
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;   
    position: fixed;
    z-index: -1;
    background-image: url('../Media/Images/Misc/Bkg.jpg');
    filter: blur(0px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.content{
    background-color: rgb(255, 255, 255); 
    padding:5px;
    border: 15px solid aliceblue;
    border-radius: 0;
    text-align:left;
    justify-content: left;
    position:absolute;
    align-items: left;
    top:15%;
    left: 29%;
    width: 40%;
    height:fit-content;
}

.banner{
    display:flex;
    text-align:center;
    background-color: rgba(255, 255, 255, 1);
    justify-content: center;
    align-items: center;
    position: fixed;
    border: 4px solid aliceblue;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 15%;
    z-index:999;
}

#title{
    font-size: 290%;
}

p{
    color: black;
    display: inline;
    font-family: Helvetica;
    font-size: 17px;
}

.centrato{
    text-align: center;
}

h3{
    color: #4b5320;
}

a{
    color: blue;
}

a:hover{
    color:blueviolet;
}

h1{
    color: #4b5320;
    text-align: center;
}

h2{
  color:#4b5320;
}

img{
    max-width: 100%;
    Height:auto;
}

video {
    max-width: 100%;
    height: auto;
}

audio {
    max-width: 100%;
}

.banner table{
    width: 100%;
    height:100%;
}

::selection{
    background-color: #4b5320;
    color: white;
}

.btn-content{
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    width:10.8%;
    height:fit-content;
    z-index: 1;
    border: 5px solid aliceblue;
  }
  
  .btn-content a {
    color: black;
    text-decoration: none;
    display: block;
    padding: 7px;
  }
  
  .d-content:hover .btn-content {
    display: block;
  }
  
  .drop{
    background-color: transparent;
    color: black;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
  }
  
  .drop:hover{
    background-color: black;
    transition: background-color 0.3s ease;
    color:white;
  }
  
  #btnenl:hover{
    transform: scale(1.3);
    transition: transform 0.2s ease;
  }
  
  .btn-content li:hover a{
    transition: color 0.3s ease;
    color:red;
    transform: scale(1.1);
    transition: transform 0.2s ease;
  }
  
  .btn-content li:hover{
    background-color: aliceblue;
    transition: background-color 0.3s ease;
  }

  #footer{
    position: fixed;
    left:36.5%;
    bottom:-51.5%;
    width:41.3%;
    height:60%;
    background-color: white;
    border:10px solid rgb(91, 119, 145);
    overflow: hidden;
    transition: bottom 0.2s;
    z-index:2;
    text-align: center;
    min-width: 41.3%;
  }
  
  #footer:hover {
    bottom:0;
  }

  .nodot{
    list-style-type: none;
  }
  
  li{
    margin: 0;
  }

  .table{
    border: 5px solid #000;
    margin:0;
  }

.imgflicker {
    position: relative;
}

.img1, .img2 {
    position: absolute;
    top: 0;
    left: 25%;
}

.img1 {
  animation: flicker1 5s infinite;
}

.img2 {
  pointer-events: none;
  animation: flicker2 5s infinite;
}

@keyframes flicker1 {
  0%, 98% { opacity: 1; }
  99%, 100% { opacity: 0; }
}

@keyframes flicker2 {
  0%, 98% { opacity: 0; }
  99%, 100% { opacity: 1; }
}

.imgflicker a {
    display: block;
    cursor: default;
    text-decoration: none;
}