* {
    padding: 0;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 100vh;
    font-family: Hack, monospace;
}

div {
    color: #979797;
    text-align: center;
}

.homeLogo {
    height: 200px;
    width: auto;
    background: white;
    border-radius: 50%;
}

p {
    margin: 16px;
    font-size: 96px;
    color: #247C28;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 1s ease-in-out;
    position: relative;
}

p::before {
    content: attr(data-item);
    transition: all 1s ease-in-out;
    color: #247C28;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 0;
    overflow: hidden;
}

p:hover::before {
    width: 100%;
}

nav {
    margin: 50px 25px 25px 25px;
    padding: 16px;
    background: black;
    border-radius: 10px;
}

nav .menuItems {
    list-style: none;
    display: flex;
}

nav .menuItems li {
    margin: 15px 40px;
}

nav .menuItems li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 24px;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
    position: relative;
    text-transform: uppercase;
}

nav .menuItems li a:hover {
    color: #247C28;
}

footer {
    position: absolute;
    font-size: 12px;
    bottom: 0;
    width: 100%;
    height: 60px;
    line-height: 60px;
    font-size: 14px;
    background-color: #f1f1f1;
    color: #000000;
    text-align: center;
}

footer a {
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid;
}

footer a:hover {
    border-bottom: 1px transparent;
}
