.title {
    font-size: 28px;
    text-align: center;
    margin-top: 32px;
    margin-bottom: 32px;
    
    @media screen and (max-width: 1050px) {    
        margin-top: 12px;
        margin-bottom: 12px;
    }
}

.blue-background {
    background-color: #2ea3f2;
}

.blue-text {
    color: blue;
    font-family: "tahoma";
    font-size: 18px;
    font-style: italic;
    font-weight: normal;
}

.images {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}

.clickableImage {
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    /*max-width: 500px; */
}
  
.clickableImage:hover {
    opacity: 0.7;
}

.is-big {
    font-size: 24px;
}
.is-middle {
    font-size: 18px;
}
.is-small {
    font-size: 14px;
}

.container {
    /*margin-bottom: 48px; */
}

.canvas-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

select, button {
    margin: 0;
}

.canvas {
    display: flex;
    align-items: baseline;

    @media screen and (max-width: 1050px) {
        align-items: center;
        flex-direction: column;
        gap: 6px;
        justify-content: center;
    }
}

.btstyled {
    border: 0;
    line-height: 2.5;
    padding: 0 20px;
    font-size: 1rem;
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
    border-radius: 10px;
    background-color: rgb(150, 2, 2);
    background-image: linear-gradient(
      to top left,
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.2) 30%,
      rgba(0, 0, 0, 0)
    );
    box-shadow:
      inset 2px 2px 3px rgba(255, 255, 255, 0.6),
      inset -2px -2px 3px rgba(0, 0, 0, 0.6);
  }
  
  .btstyled:hover {
    background-color: rgb(255, 0, 0);
    color: #fff;
  }
  
  .btstyled:active {
    box-shadow:
      inset -2px -2px 3px rgba(255, 255, 255, 0.6),
      inset 2px 2px 3px rgba(0, 0, 0, 0.6);
    color: #fff;
  }
