html {
    background: #a5a0a7;
}

body {
    margin: 0;
    font-family: "Libre Barcode 128 Text";
    font-weight: 400;
    font-style: normal;
    overflow: hidden;
}

.container {
    position: absolute;
    top:0;
    bottom: 0;
    width: 500px;
    height: 300px;
    margin: auto;
}

li {
    transform-origin: 0% 0%;
    font-size: 3rem;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: bolder;
}

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

a:hover {
    text-decoration: line-through;
    text-decoration-color: red;
}

@media only screen and (min-width: 768px) {
    ul {
        transform: translate(90%, -135%);
        list-style-type: none;
    }

    .megaphone {
        position: relative;
        left: -30%;
    }
}

@media only screen and (max-width: 768px) {
    ul {
        transform: translate(-20px, -135%);
        list-style-type: none;
    }

    .megaphone {
        position: relative;
        left: -600px;
    }

    .container {
        width: 60%;
    }
}