body {
    margin: 0px;
    background-color: rgb(23, 11, 0);
    color: rgb(255, 122, 0);
    font-family: monospace
}

h1 {
    margin: 30px;
    color: rgb(255, 122, 0);
    font-family: VCRfont;
    font-size: 80px;
}

h2 {
    margin: 30px;
    color: rgb(255, 122, 0);
    font-family: VCRsmaller;
    font-size: 40px;
}

h3 {
    margin: 0px;
    color: rgb(255, 122, 0);
    font-family: SmallPixel;
    font-size: 30px;
}

p {
    margin: 0px;
    color: rgb(255, 122, 0);
    font-family: SmallPixel;
    font-size: 15px;
}

ButtonText {
    color: rgb(255, 122, 0);
    font-family: SmallPixel;
    font-size: 20px;
    
    display:flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 100px;
}

ButtonTextSmall {
    color: rgb(255, 122, 0);
    font-family: SmallPixel;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 50px;
}

FoxLink {
    cursor: pointer;
    text-decoration:underline;
}
    FoxLink:hover {
        color: rgb(169, 143, 118);
    }
    FoxLink:active {
        color: rgb(106, 51, 0);
    }
    FoxLink:visited {
        color: rgb(106, 51, 0);
    }

.box {
    border-color: rgb(255, 122, 0);
    border: 5px solid;
    border-radius: 5px;
}

#box1 {
    width: 90%;
    height: 100px;
    margin: auto;
}

#box2 {
    background-color: rgb(255, 214, 176);
    width: 250px;
    height: 100px;
}

.ButtonLight {
    background-color: rgb(255, 214, 176);
    color: rgb(255, 122, 0);
    font-family: SmallPixel;
    text-align: center;
    width: 250px;
    height: 100px;
    border: 5px solid;
    cursor: pointer;
    display: inline-block;
}
    .ButtonLight:hover {
        background-color: rgb(169, 143, 118);
    }
    .ButtonLight:active {
        border-color: rgb(106, 51, 0);
    }

.ButtonDashed {
    background-color: rgb(23, 11, 0);
    display: inline-block;
    border: 4px dashed;

    color: rgb(255, 122, 0);
    font-family: SmallPixel;
    text-align: center;

    cursor: pointer;
}
    .ButtonDashed:hover {
        border-color: rgb(255, 156, 66);
    }
    .ButtonDashed:active {
        border-color: rgb(106, 51, 0);
    }

#ButtonBig {
    margin: 0 20px 0 20px;
    width: 250px;
    height: 100px;
}

#ButtonSmall {
    margin: 0 10px 0 10px;
    width: 100px;
    height: 50px;
}

.PreviewImage {
    opacity: 0;
    width: 100px;
    height: 15px;
}
    .PreviewContainer:hover .PreviewImage {
        opacity: 1;
        background-repeat: no-repeat;
        background-size: cover;
        width: 300px;
        height: 300px;
    }


.PreviewContainer {
    width: 300px;
    height: 15px;
}

    .PreviewContainer:hover {
        width: 300px;
        height: 300px;
    }


