.home {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgb(255, 255, 255);
    padding: 0.5rem;
    border-radius: 5px;
}

.active {
    text-decoration: underline;
    font-weight: bold;
}

ul {
    display: flex;
    margin: 0rem 1.5rem 0rem 1.5rem;
}

ul a {
    text-decoration: none;
}

li {
    display: flex;
    flex-direction: column;
    margin-right: 1rem;
}

@media (min-width: 1200px) {
    .home {
        position: absolute;
        top: 5rem;
        left: 14rem;
        width: 4rem;
        height: 4rem;
        background-color: rgb(255, 255, 255);
        padding: 1rem;
        border-radius: 5px;
    }
}