body {
    width: 100%;
    height: 100vh;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-y: hidden;

    margin: 0;
    padding: 0

    ;background: #FEFEFE;
    font-family: 'Poppins', sans-serif;
}
nav {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: flex-end;
    position: fixed;
    z-index: 1;
    top: 0;

    font-size: 16px;
    font-weight: 600;

    & a {
    padding-top: 20px;
    padding-right: 50px;

    color: #222;
    text-decoration: none;
}
}
.container {
    width: 90%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    
}
.container_image {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

        & img {
            width: 460px;
        }
}
.commands {
    display: flex;
    flex-direction: column;
    align-items: center;

    & .commands_list {
        width: 400px;
        padding: 16px 24px;
        
        background: #F5F5F5;
        border-radius: 8px;
        & ul {
            list-style: none;
        }
        & li {
            font-size: 16px;
        }
    }
}

.title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 32px;
}
.commands_title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    margin-top: 32px;
}