* {
    font-family: "Odinson", sans-serif;
    margin: 0;
}

body {
    max-width: 100vw;
    height: calc(var(--vh, 1vh) * 100);
}

.content{
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.content .logo {
    position: absolute;
    margin: 20px;
    left: 0;
    top: 0;
}

.content .logo img {
    width: 50px;
}

.content h1 {
    text-align: center;
    margin-bottom: 10px;
}

.content .pofile__img{
    min-width: 100%;
    margin-bottom: 20px;

    display: flex;
    justify-content: center;
}

.pofile__img img{
    min-width: 255px;
    min-height: 255px;

    border-radius: 10px;
    background-color: #D9D9D9;
}


.nav-toggle{
    display: none; 

}

.nav-toggle-lable{
    cursor: pointer;
}

.nav-toggle:checked ~ nav.help__content{
    height: 100%;
    transform: scale(1, 1 );
}

.help__content{
    height: 0;
    transform: scale(1, 0);
}



