*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: rgb(252, 190, 226);
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.settings{
    border: 3px solid black;
    border-radius: 20px;
    margin: auto;
    width:90%;
    background-color: white;
    display: flex;
    flex-direction: column;
}

.screen {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 20px;
  position: relative;
}

.screen img{
    width: 60%;
    height: auto;
    margin: 0 auto;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 40px;         
  padding-top: 30px;
  width: 100%;
}

.buttons button {
  width: 100px;
  height: 35px;           
  border-radius: 10px;
  border: 2px black solid;
  cursor: pointer;
}

#buttonYes {
  background-color: rgb(75, 255, 68);
  transform: translateX(-60px); 
}

#buttonNo {
  position: absolute;
  background-color: red;
  z-index: 10;
  transform: translateX(60px); 
}