body {
    background-color: rgb(177, 243, 238);
}

* {
    box-sizing: border-box;
}

body {
    background-color: white;
    transition: background-color .3s;
    margin: 0px;
    color: white;
    font-family: 'Permanent Marker', cursive;
    background-image: url("images/background.png");
}

h1 {
    color: white;
    text-align: center;
    font-size: 5vw;
    margin:0;
    padding: 1vw;
    border-style: solid;
    border-style: white;
    border-width: 0 0 1vh 0;
    text-shadow: 4px 0px 0 red, -4px 0px 0 cyan;
}

img{
    width:30vw;
}

p {
    display: inline-block;
    max-width: max-content;
}

.main-container{
    background-color: transparent;

    width: 70vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    margin-right: auto;
    margin-left: auto;
}

.left{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width:50%;
    height: 100%;
    gap: 22%;
}

.left-item{
    background-color: transparent;
    width:100%;
    height: 45vh;
    text-align: center;
    font-size: 3vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.right{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width:50%;
    height: 100%;
    gap: 22%;
}

.right-item{
    background-color: transparent;
    width:100%;
    height: 45vh;
    text-align: center;
    font-size: 3vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.unknown {
    --s: 18vw;   /* the size of the image */
    --b: 8px;     /* the border thickness*/
    --g: 14px;    /* the gap */
    --c: cyan; /* the color */
    
    width: var(--s);
    aspect-ratio: 1;
    outline: calc(var(--s)/2) solid rgba(255, 255, 255, 0.6);
    outline-offset: calc(var(--s)/-2);
    cursor: pointer;
    transition: .3s;
  }

  .unknown:hover {
    outline: var(--b) solid var(--c);
    outline-offset: var(--g);
  }

  .unknown2 {
    --s: 18vw;   /* the size of the image */
    --b: 8px;     /* the border thickness*/
    --g: 14px;    /* the gap */
    --c: red; /* the color */
    
    width: var(--s);
    aspect-ratio: 1;
    outline: calc(var(--s)/2) solid rgba(255, 255, 255, 0.6);
    outline-offset: calc(var(--s)/-2);
    cursor: pointer;
    transition: .3s;
  }

  .unknown2:hover {
    outline: var(--b) solid var(--c);
    outline-offset: var(--g);
  }

  a{
   font-size: 3vw;
   color: white;
   -webkit-text-stroke-width: 3px;
   -webkit-text-stroke-color: black; 
   text-decoration: none;
   text-shadow: 4px 2px 0 red, -4px -2px 0 cyan;;
  }
