/* Mobile */
body {
    background-color: black;
    color: white;
    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#user-name{
    text-align: center;
    margin-top: 50px;
    font-size: 20px;
}

.menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    gap: 15px;
    font-size: 18px;
}

.move_page {
    color: white;
	text-decoration: none;
    font-size: 18px;
}

img {
    width: 100px;
    height: auto;
}

.hidden{
      display: none;
}
/* Desktop */
@media (min-width: 768px) {
    .menu {
        font-size: 24px;
        gap: 20px;
    }

    .move_page {
        font-size: 24px;
    }

	.move_page:hover {
        color: white;
        font-size: 28px;
    }

    img {
        width: 150px;
    }
}

