*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "VT323", monospace;
    background: #333;
    color: #f9f9f9;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
    background: url(assets/bg/dirt.jpg) repeat;
}

.root{
    width: 100%;
    height: 100vh;
}

.hero{
    font-size: 1.7rem;
    width: 100%;
    background: url(assets/bg/dirtlight.jpg) repeat;
    color: #f9f9f9;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    justify-self: start;
    align-self: start;
}

.topBar{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    right: 1px;
    top: 1px;
}

.topBar button {
    background: #555;
    border: none;
    color: #f9f9f9;
    padding: 0.5rem;
    cursor: pointer;
    height: 50px;
    aspect-ratio: 1/1;
    font-size: 1.5rem;
    border-radius: 100px;
    margin: 9px;
    transform: rotate(0deg);
    transition: transform 0.3s ease-in-out;
}

.topBar button:hover {
    transform: rotate(45deg);
}

footer{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: url(assets/bg/dirtlight.jpg) repeat; 
    color: #f9f9f9;
    padding: 1.3rem;
    text-align: center;
    flex-direction: column;
}