* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Nunito', sans-serif;

}


body {
  background-color: #f4f4f4;
  font-size: 16px;
  font-family: 'Nunito', sans-serif;
  background-size: cover;
  background-image: url('bg.png');
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  height: 100vh;
  overflow: hidden;
  position: relative;
  overflow-y: scroll;
}

#particles-js{
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  position: fixed;
  top: 0px;
  z-index:-1;
}

.start {
  cursor: pointer;
  border: none;
  background-color: rgba(10, 10, 10, 0.5);    
  border-radius: 20px;
  color: var(--text-color);
  padding: 20px 70px;
  margin: 3px;
  transition: 0.3s;
}

.start:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 14px rgba(0, 0, 0, 0.3);
  background-color: rgba(86, 86, 86, 0.5);    
}

#roddy {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  color: white;
  background-color: rgba(10, 10, 10, 0.4);    
  backdrop-filter: blur(4px);

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 80px;
  line-height: 1.8;
}


button {
  cursor: pointer;
  border: none;
  background-color: rgba(10, 10, 10, 0.5);    
  border-radius: 10px;
  color: var(--text-color);
  padding: 15px 20px;
  margin: 3px;
  transition: 0.3s;
}

button:hover {
  box-shadow: 0 10px 14px rgba(0, 0, 0, 0.3);
  background-color: rgba(228, 162, 214, 0.6);    
}



select {
  cursor: pointer;
  border: none;
  background-color: rgba(10, 10, 10, 0.5);    
  border-radius: 10px;
  color: var(--text-color);
  padding: 15px 20px;
  margin: 3px;
  transition: 0.3s;
}


select:hover {
  box-shadow: 0 10px 14px rgba(0, 0, 0, 0.3);
  background-color: rgba(0, 0, 0, 0.6);    
}