* { 
  box-sizing: border-box;
 }
 *:before,
 *:after {
  box-sizing: border-box;
 }

html,
body {
 height: 100%;
 position: relative;
}

body {
  margin: 0;
  font-family: GabrielWeissFriendsFont;
  background-image: url("./assets/background.jpg");
  background-size: cover;
}

.mainContainer {
  min-height: 100vh; 
  overflow: hidden;
  display: block;
  position: relative;
  padding-bottom: 50px; 
}


h1 {
  font-size: 80px;
  margin-top: 10px;
  margin-bottom: 0;
  font-family: GabrielWeissFriendsFont;
  color: #000;
  text-align: center;
}

h2 {
  margin-top: 0;
  font-family: GabrielWeissFriendsFont;
  color: #000;
  text-align: center;
  font-size: 30px;
}

.cards {
  margin: 30px auto 50px auto;
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.cardName {
  font-family: GabrielWeissFriendsFont;
  font-size: 25px;
}

p {
  margin: 2px;
  font-weight: 300;
  font-size: 15px;
}

.friendsImage, .foodsImage, .roomsImage {
  margin-top: 10px;
}

.friendsContainer, .foodsContainer, .roomsContainer{
  width: 330px;
  height: 400px;
  background: #fff;
  text-align: center;
  padding-top: 30px;
  border-radius: 16px;
  position: relative;
}

button {
  padding: 10px 18px;
  background: #000;
  color: #fff;
  border: none;
  font-size: 25px;
  border-radius: 8px;
  display: block;
  margin: 0 auto 30px auto;
  font-family: GabrielWeissFriendsFont;
}

article, .cookButton, .refreshPage {
  cursor: pointer;
}

.mystery {
  width: 800px;
  text-align: center;
  margin: 10px auto;
  font-size: 30px;
  color: #fff;
  border-radius: 5px;
  background-color: #000;
  animation: mymove 5s infinite;
}

@keyframes mymove {
  from {background-color: #000;}
  to {background-color: #e0d039b6;}
}

footer {
  background-color: rgba(250, 250, 250, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  width: 100%;
  margin-top: 200px;
  position: absolute;
  bottom: 0;
  height: 70px;
}

footer p {
  text-align: center;
  margin: 30px 0 0 0;
}

a {
  text-decoration: none;
  color: #000;
}