@font-face {
  font-family: 'Outrun';
  src: url('../fonts/Outrun_future.otf') format('truetype');
}
.logo {
  width: 5%;
  height: auto;
border: none;
}
body {
  font-family: 'Outrun', sans-serif;
  font-size: 26px;
  margin: 0;
  padding: 0;
  background-image: url("../images/abc/wallpaper3.png");
  background-repeat: repeat;
  background-size: cover;
}

h1 {
  text-align: center;
  margin-top: 0px;
  text-shadow: 3px 3px 5px #000000;

}

p {
  text-align: center;
  margin-bottom: 20px;
  color: black;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

li {
  margin: 10px;
}

a {
  display: block;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #f2f2f2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
  margin: 0;
  padding: 0;
  text-align: center;
}

a:hover {
  background-color: #333;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  border: 2px solid black;
  border-radius: 200%;
}

.logo-list {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: black;
}

.w3c-logo-icon {
  width: 60px;
  height: 60px;
  margin-right: 20px;
}

.Futura {
  font-family: 'Futura', sans-serif;
  font-size: 15px;
}

.home-link {
  position: absolute;
  top: 0;
  left: 0;
  margin: 10px;
  padding: 0;
  width: 20px;
  height: 20px;
  background-color: white;
}

.home-link img {
  width: 50%;
  height: 100%;
  object-fit: contain;
  border: none;
  outline: none;
}

.home-link:hover {
  background-color: #f2f2f2;
  box-shadow: none;
}

.back-to-home-container {
  text-align: center;
}

.back-to-home {
  all: unset; /* Reset all styles */
  color: #000000; /* Set text color to black */
  cursor: pointer; /* Ensure a pointer cursor on hover */
  text-decoration: none; /* Remove underline */
  background: none; /* Ensure no background */
  border: none; /* Ensure no border */
  box-shadow: none; /* Ensure no shadow */
  outline: none; /* Ensure no outline (focus) */
  display: inline; /* Ensure inline display */
}

.back-to-home:hover {
  color: #1E90FF; /* Change text color on hover */
  background: none; /* Ensure no background on hover */
  border: none; /* Ensure no border on hover */
  box-shadow: none; /* Ensure no shadow on hover */
  outline: none; /* Ensure no outline on hover */
}







