* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    height: 100vh;
    background: url("ichi.jpg") center/cover no-repeat;
    overflow: hidden;
}

.desktop {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 25px;
}

.icon {
    width: 90px;
    text-align: center;
    color: white;
    cursor: pointer;
    user-select: none;
}

.icon img {
    width: 64px;
    height: 64px;
    border-radius: 15px;
    transition: .25s;
}

.icon:hover img {
    transform: scale(1.1);
}

.icon p {
    margin-top: 8px;
    font-size: 15px;
    text-shadow: 0 0 6px black;
}

.taskbar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}
