@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css");
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow: hidden;
    overflow-y: auto;
}
.banner {
    background: gray no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.bannertopright {
    position: absolute; 
    top: 20px;
    right: 20px; 
    color: white; 
    text-decoration: none;
    font-size: 1.5rem;
}
.bannertopleft {
    position: absolute; 
    top: 20px; 
    left: 20px; 
    color: white; 
    text-decoration: none; 
    font-size: 1.5rem;
}
.banner h1 {
    font-size: 3rem;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    display: inline-block;
    position: relative;
}
.banner h1::after {
    content: '';
    display: block;
    height: 5px;
    background: red;
    margin: 10px auto 0;
}
.navbar {
    overflow: hidden;
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.navbar .tablink {
    display: inline-block;
    color: white;
    background-color: #333;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
}
.navbar .right {
    float: right;
}
.navbar .tablink:hover {
    background-color: #ddd;
    color: black;
}
.tabcontent {
    color: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    max-width: 1280px;
    margin: auto;
}
.row {  
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
}
.side {
    -ms-flex: 30%; /* IE10 */
    flex: 30%;
    background-color: #f1f1f1;
    padding: 20px;
}

.main {   
    -ms-flex: 70%; /* IE10 */
    flex: 70%;
    background-color: white;
    padding: 20px;
}
.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    margin: 8px;
    width: 100%;
}
.imageinfocards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f4f4f4;
}
.imageinfocard {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 30%;
    max-width: 400px;
    min-width: 300px;
    text-align: center;
    padding: 20px;
    transition: background 0.3s ease;
  }
  .imageinfocard:hover {
    background: lightgray;
  }
  .imageinfocard img {
    max-width: 100%;
    border-radius: 8px;
  }
  .imageinfocard h3 {
    margin: 15px 0 10px;
    font-size: 1.5rem;
  }
  .imageinfocard p {
    color: #555;
  }
.container {
    padding: 0 16px;
}
.container::after, .row::after {
    content: "";
    clear: both;
    display: table;
}
#questionList {
    list-style: none;
    padding: 0;
    margin: 20px auto;
}
#questionList li {
    background: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin: 10px 0;
    transition: background 0.3s ease;
}
#questionList li p {
    margin: 0;
    font-size: 0.9em;
    color: #555;
}
.tabentry {
    padding: 20px;
    display: none;
}
.categoryFilter {
    margin-right: 5px;
}
.qustionFilter {
    text-align: center;
    margin: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.qustionFilter label {
    display: flex;
    align-items: center;
}

.social {
    text-align: center;
    padding: 20px;
    background: #333;
    color: white;
}

.social a {
    margin: 0 10px; 
    color: white;
    text-decoration: none;
}

.social a svg {
    width: 24px;
    height: 24px;
    fill: white;
    vertical-align: middle;
}

.social a i {
    width: 24px;
    height: 24px;
    fill: white;
    vertical-align: middle;
    font-size: 24px;
}
