h1 {
    color: black;
    font-family: "Futura", Futura, sans-serif;
    font-size: 72px;
}

h2 {
    color: goldenrod;
    font-family: "Futura", Futura, sans-serif;
    font-size: 62px;
}

h3 {
    color: rgb(6, 46, 101);
    font-family: "Futura", Futura, sans-serif;
    font-size: 58px;
}

h4 {
    color: rgb(32, 110, 218);
    font-family: "Futura", Futura, sans-serif;
    font-size: 58px;
    text-decoration: underline;
}

a {
    text-decoration: none;
    color: inherit;
}

p {
    font-size: 2vw;
    font-family: "Courier New", Courier, monospace;
}

.lime {
    background-color: #ace600;
    color: #ace600;
}

.tangerine {
    background-color: #FF7A33;
    color: #FF7A33;
}

.link {
    background-color: black;
    color: white;
}

.gilded {
    background-color: #FFBC29;
    color: #FFBC29;
}



img {
    width: 66%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.title {
    align-content: center;
}

.container {
    position: relative;
    width: 100%;
    padding: 50px;
    max-width: 750px;
}

.overlay {
    wrap-option: pre-wrap;
    position: absolute;
    bottom: 0;
    left: 100%;
    right: 0;
    background-color: #000;
    overflow: hidden;
    width: 0;
    height: 100%;
    transition: .5s ease;
}

.container:hover .overlay {
    width: 100%;
    left: 0;
}

.text {
    white-space: normal;
    position: absolute;
    overflow: scroll;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: right;
}
