html {
    background-color: black;
    margin: 25px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.bigBox {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    background-color: gainsboro;
    padding: 50px;
}

.title {
    font-size: 2.5em;
    font-weight: bolder;
    color: greenyellow;
    -webkit-text-stroke: 1.5px black;
    animation-name: flash;
    animation-duration: .1s;
    animation-iteration-count: infinite;
}

@keyframes flash {
    from {
        opacity: 100%;
    }
    
    to {
        opacity: 50%;
    }
}

.didactic {
    font-size: 1.25em;
    font-family: sans-serif;
    font-style: italic;
    color: green;
}

.description {
    font-size: 1.5em;
    max-width: 25em;
}

img {
    padding-top: 50px;
    width: 40vw;
}