@import url('https://fonts.googleapis.com/css2?family=Bungee+Spice&family=Outfit:wght@400;700&family=Roboto&family=Ubuntu:wght@300;700&display=swap');

.emojis, .modal-ele {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  background-color: #2c3446;
  color: rgb(34, 40, 49);
  display: flex;
  flex-direction: column;
  color: rgb(221, 221, 221);
}

nav {
  color: rgb(245, 185, 37);
  background-color: rgb(17, 23, 32);
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-family: 'Bungee Spice', cursive;
}

.body-content {
  font-family: 'Ubuntu', sans-serif;
  margin-top: 42px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

footer {
  color: #c0d8c2;
  display: flex;
  min-height: 60px;
  gap: 12px;
  background-color: #2c3446;
  justify-content: center;
  align-items: center;
}

.socials {
  display: flex;
  gap: 16px;
}

.selections {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.headings {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.selected {
  display: flex;
  width: 60px;
  height: 60px;
  justify-content: center;
  align-items: center;
  font-size: 32px;
}

.emojis {
  font-size: 32px;
  display: flex;
  gap: 28px;
}

.button {
  display: flex;
  height: 100px;
  width: 100px;
  background-color: rgb(57, 62, 70);
  justify-content: center;
  align-items: center;
  border-radius: 14px;
}

.button:hover {
  cursor: pointer;
  background-color:gray;
}

#modal {
  width: 300px;
  height: 150px;
  position: absolute;
  left: 50%;
  top: 50%; 
  margin-left: -150px;
  margin-top: -150px;
  background-color: #2c3446;
  color: aliceblue;
  text-align: center;
  border-radius: 25px;
  padding: 30px;
}

#modal::backdrop {
  background: linear-gradient(45deg, black, white);
  opacity: .4;
}

.play-again {
  background-color: #c0d8c2;
  padding: .6em .8em;
  margin-top: 6px;
  border-radius: 12px;
}