:root {
  --options-bg-color: #2E2E2E;
  --option-hover-color: #3C3C3C;
  --accessory-color: #FFFAFA;
  --accessory-hover-color: #CCCCCC;
  --selected-color: #AE4242;
  --selected-hover-color: #893434;
}

body {
    margin: 0;
    padding: 0;
    text-align: center;
}

#logo {
    background-image: url('../Images/LOGO.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: fixed;
    transform: translateY(-50%);
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.16));
    transition: all 0.2s ease-out;
    animation-name: fadein_logo;
    animation-duration: .5s;
    animation-timing-function: ease-out;
}

.display {
    height: 80vh;
    margin: 5vh auto;
    background-position: center;
    background-size: auto 100%;
    background-repeat: no-repeat;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    transition-property: width, background-image;
    transition-duration: 0.1s;
    transition-timing-function: ease-out;
}

.option-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.2s ease-out;
}

.options {
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background-color: var(--options-bg-color);
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    transition: all 0.2s ease-out;
}

.option {
    width: 100px;
    height: 50px;
    margin: 10px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    transition: all 0.2s ease-out;
}

#show-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    width: 80px;
    height: 40px;
    background-color: white;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    border-radius: 15px;
}

.option:hover {
    background-color: var(--option-hover-color);
    color: #fff;
    font-weight: 500;
}

.selected {
    background-color: var(--selected-color) !important;
    color: #fff;
    font-weight: 600;
}

.selected:hover {
    background-color: var(--selected-hover-color) !important;
    color: #fff !important;
    font-weight: 600 !important;
}

.accessories {
    position: fixed;
    top: 50%;
    right: 10px;
    animation-name: fadein_accessories;
    animation-duration: .5s;
    animation-timing-function: ease-out;
    transform: translateY(-50%)
}

.accessory {
    width: 100px;
    height: 50px;
    margin: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accessory-color);
    border-radius: 15px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    transition: all 0.2s ease-out;
}

.accessory:hover {
    background-color: var(--accessory-hover-color);
    color: #000;
    font-weight: 500;
}

@media (orientation: landscape) {
  .display {
    width: 50vw;
  }
  
  #logo {
    width: 200px;
    height: 77px;
  }
  
  .option-area {
    position: relative;
  }
  
  #show-button {
    display: none !important;
  }
}

@media (orientation: portrait) {
  .display {
      width: 90vw;
  }
  
  #logo {
    width: 180px;
    height: 70px;
  }
  
  .option-area {
    position: fixed;
    bottom: 0;
  }
  
  .hide {
    transform: translateY(60%);
  }
}

@keyframes fadein_logo{
    from{
        transform: translateY(-70%);
        opacity: 0;
    }
    to{
        transform: translateY(-50%);
        opacity: 1;
    }
}