*{
    margin: 0px;
    padding: 0px;
}

body{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    position: relative;
    background-color: rgba(153, 153, 153, 0.2);
}

.titlepage{
    width: 40px;
    height: 45px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: rgba(51, 51, 51, 0.8);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    color: lime;
    z-index: 100;
}

.content{
    width: 80%;
    min-height: fit-content;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
    padding-bottom: 80px;
}

.menu{
    opacity: 0;
    width: 70%;
    padding: 15px 0px;
    height: fit-content;
    background-color:transparent;
    backdrop-filter: blur(20px);
    position: fixed;
    bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 20px;
    box-shadow: 0px 0px 15px #333;
    transition: all 0.3s ease-in-out;
    pointer-events: none;
    z-index: 100;
    gap: 15px;
}

.menu.myopen{
    opacity: 1;
    transform: translateY(-300px);
    pointer-events: auto;
}

.menu.myopen2{
    opacity: 1;
    transform: translateY(-150px);
    pointer-events: auto;
}

.menu a{
    width: 80%;
    font-size: 18px;
    text-decoration: none;
    display: flex;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    gap: 15px;
}

.menu a i{
    font-size: 22px;
}

.menu a span{
    min-width: 85%;
    direction: rtl;
}

.menu .myactive{
    background-color: #333;
    color: lime;
    border-radius: 15px;
    padding: 5px 12px;
}

.showmenu{
    width: 100%;
    height: 40px;
    position: fixed;
    bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    z-index: 100;
}

.showmenu #open{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.5s;
    background-color: #333;
}

.showmenu #open i{
    font-size: 25px;
    color: lime;
}

.showmenu #close{
    width: 40px;
    height: 40px;
    background-color:red;
    border-radius: 50%;
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    cursor: pointer;
    transition: 0.5s;
}

.showmenu #close i{
    font-size: 25px;
    margin-top: 0px;
    color: white;
}

.content .error{
    padding: 10px 0px;
    margin-top: 10px;
    width: 100%;
    text-align: center;
    min-height: 42px;
    word-wrap: break-word;
    min-height: auto;
    font-size: 16px;
    border-radius: 20px;
    background-color: white;
    color: darkred;
    box-shadow: inset 8px 5px 10px rgba(255, 0, 0, 0.8);
    word-wrap: break-word;
}

.content .done{
    padding: 10px 0px;
    margin-top: 10px;
    width: 100%;
    text-align: center;
    min-height: 42px;
    word-wrap: break-word;
    min-height: auto;
    font-size: 16px;
    border-radius: 20px;
    background-color: white;
    color: green;
    box-shadow: inset 8px 5px 10px rgba(0, 128, 0, 0.8);
    word-wrap: break-word;
}