*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}


.header{
    background-image: url("../images/background_index.jpg");
    content: "";
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
    padding-bottom: 80px;
    background-color: black;
}



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

.header nav img {
    margin-right: auto; 
    max-width: 100px;
    max-height: 100px;
    margin-left: 10px;
    margin-top: 10px;
}

.header ul {
    display: flex;
    justify-content: end;
    gap: 6px;
    list-style: none;
    color: rgb(255, 255, 255);
    margin-right: 5px;
    padding-right  : 15px;

}

.header a {
    display:inline-block;
    color: rgb(0, 0, 0);
    -webkit-text-stroke: 0.3px rgba(0, 0, 0, 0.671);
    font-size: 1.3rem;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
}

.header{
    border-bottom: 3px solid #ffcc00;
}


li a:hover {
    text-decoration: underline;
    background-color:#21b6c6;
    font-size: 1.4rem;
}

.header h1 {
    color: white;
    width: fit-content;
    margin: auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 100px;
    font-size: 3rem;
    margin-bottom: 100px;
    -webkit-text-stroke: 0.3px rgb(0, 0, 0);
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.723);
    background-color: rgba(0, 0, 0, 0.322);
}

body {
    margin: 0;
    padding: 0;
}

.search-container {
    display: flex;
    justify-content: center; 
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto; 
}

#search-bar {
    border: none;
    padding: 10px;
    width: 100%; 
    font-size: 16px;
    outline: 2px solid #0fc044;
}

nav li a{
    background-color: #ffcc00;
    padding: 10px 20px;
    text-decoration: none;
    color: #000;
    font-size: 1.2rem;
    font-weight: 600;
    margin :10px;
}

#search-button {
    border: none;
    padding: 10px 20px;
    background-color: #1474da;
    color: rgb(255, 255, 255);
    font-size: 16px;
    cursor: pointer;
    border-radius: 0 25px 25px 0;
    transition: background-color 0.3s;
}

#search-button:hover {
    background-color: #0056b3;
}


.sr-only {
	border: 0 !important;
	clip: rect(1px, 1px, 1px, 1px) !important;
	-webkit-clip-path: inset(50%) !important;
			clip-path: inset(50%) !important;
	height: 1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
	white-space: nowrap !important;
}

.skip-link {
  padding: 0.625em 0.9375em;
  border: solid 3px #000000;
  background-color: #f9dc4a;
  color: #000000;
  text-decoration: none;
}

.skip-link:not(:focus, :active) {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  clip-path: inset(50%);
}


.skip-link:focus {
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 0;
}

.title {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
    color: black;
    text-shadow: 2px 2px #ffcc00;
    font-family: 'Press Start 2P', cursive;
}

.arianne {
    color: black;
    text-align:left;
    padding-left: 5px;
    padding-top:5px;
}

.arianne a {
    color: black;

}

.arianne a:hover{
    text-decoration: underline;
}

.actual{
    font-size: 1.2rem;
    color : #be1313;
    }

#search-bar:focus,
a:focus,
ul li a:focus,
input:focus,
textarea:focus,
button:focus {
    z-index: 9999;
    outline: 5px solid #0fc044;
    box-shadow: 2 2 2px rgba(15,192,68,0.5);
    border-color: #0fc044;
    font-size: 1.4rem;
}


@media (max-width: 768px) {
    nav ul {
        display: none; 
    }

}







