/* FONT */

@font-face {
    font-family: metalGear; 
    src: url('font/MGS/METAG___.TTF') format("truetype");
} 

@font-face {
    font-family: metalGear2; 
    src: url('font/MGS/MGS2.ttf') format("truetype");
} 

@font-face {
    font-family: metalGear2Menu; 
    src: url('font/MGS/MGS2MENU.TTF') format("truetype");
}

@font-face {
    font-family: tactical; 
    src: url('font/MGS/Tactical Espionage Action.ttf') format("truetype");
}

@font-face {
    font-family: VCR; 
    src: url('font/VCR/VCR_OSD_MONO_1.001.ttf') format("truetype");
} 


/* MGS */

#mgsTest{
    background-color: gray;
    color: white;
}

#mgsTest p{
    font-family: metalGear;
    font-size: 3em;
    text-align: center;
}

#textCodec{
    width: 60%;
    height: 100px;
}

#codec{
    width: 960px;
    height: 740px;
    background-image: url(img/codec.png);
    background-size: contain;
    background-repeat: no-repeat; 
    margin-top: 100px;
    margin-left: 100px;
}

.codecOff{
    display: none;
}

.codecOn{
    display: block;
}

#textInCodec{
    /* border: 1px solid #55B978; */
    position: relative;
    top: 320px;
    margin-left: 195px;
    margin-right: 210px;
    font-family: VCR;
    font-size: 20px;
    color: gray;
}

/* style.css */
#wheel {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 5px solid #333;
    position: relative;
    overflow: hidden;
  }
  
  #wheel::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #333;
    transform: translate(-50%, -50%);
    border-radius: 50%;
  }
  
  .segment {
    position: absolute;
    width: 50%;
    height: 50%;
    background: #eee;
    transform-origin: 100% 100%;
  }



