* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.body {
    background-color: black;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-image: url("/src/pic/wallpapers/beach_mobile_3.jpg");
    background-repeat: no-repeat;
    /* Prevent the image from repeating */
    background-size: cover;
    /* Scale the image to cover the entire container */
    background-attachment: fixed;

}

.header {
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(-45deg, rgb(76, 15, 190), rgb(140, 0, 255));

}

.title {
    font-size: 20px;
    text-indent: 10px;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    margin-right: 10px;
}

.menu>hr {
    height: 2.5px;
    width: 20px;
    border: none;
    background-color: white;
    margin: 2.5px
}

.nav {
    min-height: 100vh;
    width: 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-image: url("/src/pic/wallpapers/beach_mobile_1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    overflow-x: hidden;
    transition-duration: 1.5s;
}


.main {
    min-height: 100vh;
}

.footer {
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(-45deg, rgb(76, 15, 190), rgb(140, 0, 255));
}