p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: justify;
}

h1,
h2 {
    font-family: 'Courier New', Courier, monospace;
}

ul {
    display: flex;
    justify-content: left;
    align-items: center;
    list-style-type: none;
    flex-wrap: wrap;
    padding: 0;
    width: 100%;

    li {
        background-color: white;
        border: 2px solid gray;
        padding: 10px;

        &:hover {
            background-color: #ececec;
        }

        a {
            text-decoration: none;
        }
    }

}

[data-theme="dark"] li {
    background-color: #222222;
    &:hover {
        background-color: #323131;
    }
}

[data-theme="dark"] * {
    color: white;
}

[data-theme="light"] body {
    background-image: linear-gradient(to right, lightgreen, green);
}

[data-theme="dark"] body {
    background-image: linear-gradient(to right, black, darkgreen);
}

.change-theme {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: black;
    transition: all 0.3s;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    img {
        width: 25px;
    }
    &:hover {
        cursor: pointer;
        transform: scale(1.1);
    }
}

[data-theme="dark"] .change-theme {
    background-color: gray;
    color: white;

    &:hover {
        background-color: #727272;
    }
}

.zoom {
    background-color: rgba(0, 0, 0, 0.548);
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    transition: 0.3s all ease;
}

.zoomable {
    cursor: pointer;
    transition: 0.3s all ease;
}