@font-face {
    font-family: 'InYourFaceJoffrey';
    src: url(InYourFaceJoffrey.ttf);
}

* {
    box-sizing: border-box;
}

html {
    background-image: url("../img/wp7641311.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-family: 'InYourFaceJoffrey';
    padding: 5% 5%;
}

body {
    width: 100%;
    height: auto;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    color: white;
}


.AUlogo {
    width: 40%;
    height: auto;
    filter: invert(100%);
    margin-bottom: -5px;
}

h1 {
    font-size: 4rem;
}

.main {
    background: rgba(0, 0, 0, 0.5);
    color: rgb(255, 255, 255);
    width: 75%;
    padding: 0.5% 0;
    border-radius: 0.5rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.slots {
    display: flex;
    justify-content: space-evenly;
  
}
.slotJ{
      background-image: url("../img/divbkgnd.png");
  background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}
.slot1,
.slot2,
.slot3 {
    width: 30%;
    border-radius: 0.5rem;
}

.slots img {
    width: 99%;
}


.buttons {
    padding-top: 2rem;
    margin-bottom: -0.5rem;
}

button {
  background: rgba(0, 0, 0, 0.6); 
  color: rgb(0, 0, 0); 
  padding: 12px 24px;
  border: 2px solid rgb(0, 0, 0); 
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px); 
}


button:hover {
  background: rgba(0, 0, 0, 0.8); 
  border-color: white;
  transform: scale(1.05);
}


button:active {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(0.95);
}










.credits{
text-align: center;
    color: black;
}