.option-container>div {
    max-width: min(40%, 30vh);
    width: 400px;
    margin: 5%;
    background-color: #013f3f;
    aspect-ratio: 1/1;
    max-height: 30vh;
    border-radius:10px;
    border-style: solid;
}

.option-container>div>div{
    text-align: center;
    width: 100%;
    position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.option-container {
    display: flex;
    flex-wrap: wrap;
    max-width: min(900px, 80vh);
    margin-left: auto;
    margin-right: auto;
}

h2{
    text-align: center;
}

.correcta{
    border: greenyellow;
}