a {
    color: black;
    text-decoration: none;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
    text-shadow: 2px 3px 4px grey;
}
a:hover {
    color: chocolate;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
    zoom: 150%;
}
.menu {
    position: absolute;
    padding-left: 1rem;
    display: inline-block;
    z-index: 2;
}
ul {
    text-align: left;
    font-size: large;
    padding-left: 0;
}
h1 {
    font-size: 4rem;
    text-align: center;
    color: white;
    background-color: black;
    margin-bottom: 1rem;
}
h2 {
    margin-bottom: 2rem;
}
.container {
    position: absolute;
    display: inline-block;
    margin-left: 10rem;
    width: 50%;
    text-align: justify;
    margin-top: 1rem;
    z-index: 1;
}
.block {
    margin: 1rem;
    text-align: justify;
    word-break: break-all;
}

body {
    width: auto;
}