.nintendo-ds-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 1000px;
    height: 300px;

    position: relative;
    margin-right: 40px;

}

.top-part {
    width: 575px;
    height: 300px;

    background-color: var(--primary);

    border-radius: 25px;
    border: 7px solid var(--tertiary);
    box-shadow: inset -5px -5px rgb(0, 0, 0, 0.4), inset 5px 5px rgb(256, 256, 256, 0.9);

    position: relative;
    margin:auto;
    top: 40px;
    z-index: 1;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 40px 30px;
}

.top-part .squares {
    width: 12px;
    height: 12px;

    background-color: var(--primary);

    border-radius: 4px;
    border: 3px solid var(--tertiary);
    box-shadow: inset -1px -1px rgb(0, 0, 0, 0.4);

    position: absolute;
}

.top-part .squares:nth-child(1) { top: 20px; left: 100px;}

.top-part .squares:nth-child(2) { top: 20px; right: 100px;}

.top-part .squares:nth-child(3) { bottom: 30px; left: 100px;}

.top-part .squares:nth-child(4) { bottom: 30px; right: 100px;}


.screen {
    width: 270px;
    height: 220px;

    background-color: var(--quinary);

    border-radius: 10px;
    border: 5px solid var(--tertiary);
    box-shadow: inset -3px -3px rgb(0, 0, 0, 0.4), inset 3px 3px rgb(256, 256, 256, 0.9);

    position: relative;

}

.top-part .glass {
    width: 220px;
    height: 180px;

    background-color: var(--screen);

    border-radius: 10px;
    border: 5px solid var(--tertiary);

    position: relative;
    margin:auto;
    top: 15px;

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

    overflow: hidden;
    
    box-shadow: inset 3px 3px rgb(0, 0, 0, 0.4);
}

.top-part .glass img{
    width: 300px;
    height: 180px;
    opacity: 0.8;
}



.top-part .points {
    text-align: center;
}

.top-part .points span{
    display: block;
    font-size: 18px;
    line-height: 0;
    letter-spacing: 5px;
}

.connection {
    width: 240px;
    height: 40px;

    position: relative;
    margin:auto;
    top: 10px;

    display: flex;
    align-items: flex-start;

    z-index: 1;
}

.connection div {
    background-color: var(--primary);

    border: 6px solid var(--tertiary);

    position: relative;
}

.connection div:nth-child(1) {
    width: 20px;
    height: 40px;
    
    background-color: var(--primary);

    border-radius: 8px 0 0 8px;
    border: 6px solid var(--tertiary);
    box-shadow: inset 0 3px rgb(0, 0, 0, 0.4), inset 0 -3px rgb(0, 0, 0, 0.4);

    position: relative;
    left: 0;
}

.connection div:nth-child(2) {
    width: 110px;
    height: 40px;
    
    background-color: var(--primary);

    border: 6px solid var(--tertiary);
    border-left: none;
    box-shadow: inset 0 3px rgb(256, 256, 256, 0.8), inset 0 -3px rgb(0, 0, 0, 0.4);

    position: relative;
}

.connection div:nth-child(3) {
    width: 80px;
    height: 40px;
    
    background-color: var(--primary);

    border: 6px solid var(--tertiary);
    border-left: none;
    box-shadow: inset 0 3px rgb(0, 0, 0, 0.4), inset 0 -3px rgb(0, 0, 0, 0.4);

    position: relative;
}

.connection div:nth-child(4) {
    width: 20px;
    height: 40px;
    
    background-color: var(--primary);

    border: 6px solid var(--tertiary);
    
    border-left: none;
    box-shadow: inset 0 3px rgb(256, 256, 256, 0.8), inset 0 -3px rgb(0, 0, 0, 0.4);

    position: relative;
}

.connection div:nth-child(5) {
    width: 20px;
    height: 40px;
    
    background-color: var(--primary);

    border: 6px solid var(--tertiary);
    border-radius: 0px 8px 8px 0;
    border-left: none;
    box-shadow: inset 0 3px rgb(0, 0, 0, 0.4), inset 0 -3px rgb(0, 0, 0, 0.4);

    position: relative;
}

.bottom-part{
    width: 600px;
    height: 300px;
    
    background-color: var(--primary);

    border-radius: 25px;
    border: 7px solid var(--tertiary);
    box-shadow: inset -5px -5px rgb(0, 0, 0, 0.4), inset 5px 5px rgb(256, 256, 256, 0.9);

    position: relative;
    top: -30px;

    display: flex;
    justify-content: space-between;

    padding: 40px 0;
}

.bottom-part .left-part{
    width: 150px;
    height: 200px;
    left: 0px;

    background-color: var(--primary);

    border-radius: 0 15px 15px 0;
    border: 5px solid var(--tertiary);
    border-left: none;
    box-shadow: inset -5px -5px rgb(0, 0, 0, 0.4), inset 0px 5px rgb(0, 0, 0, 0.4), inset 5px 0px rgb(256, 256, 256, 0.8);

    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 15px; 
}

.bottom-part .left-part .button{
    width: 40px;
    height: 13px;
    
    background-color: var(--quinary);

    border-radius: 5px;
    border: 3px solid var(--tertiary);
    box-shadow: 2px 2px rgb(0, 0, 0, 0.4), inset 2px 2px rgb(256, 256, 256, 0.8);

    position: relative;
    margin: 0 auto;
}


.bottom-part .left-part .directions {
    position: relative;
}

/*.bottom-part .left-part:after{
    content: "";
    width: 16px;
    height: 20px;

    background-color: var(--quinary);
    position: relative;
    left: 50px;
    top: -15px;
}*/

.bottom-part .left-part .directions span:after{
    width: 9px;
    height: 9px;
    
    background-color: var(--quinary);

    border-radius: 50%;
    border: 4px solid var(--tertiary);

    position: absolute;
    top: 0px;
    left: 0px;
    content: "";
    z-index: 0;
}

.bottom-part .left-part .directions span{
    width: 25px;
    height: 25px;
    background-color: var(--quinary);
    border: 4px solid var(--tertiary);

    position: absolute;
    top: 50px;
    left: 45px;
    z-index: 0;
}

.bottom-part .left-part .directions button{
    background-color: var(--quinary);

    border-radius: 15px;
    border: 3px solid var(--tertiary);
}

.bottom-part .left-part .directions .top-button{
    width: 25px;
    height: 35px;

    background-color: var(--quinary);

    border-radius: 15px 15px 0 0;
    border: 5px solid var(--tertiary);
    box-shadow: 2px 2px rgb(0, 0, 0, 0.4), inset 2px 2px rgb(256, 256, 256, 0.8);
    border-bottom: none;

    position: absolute;
    
    top: 15px;
    left: 45px;
    z-index: 2;
}

.bottom-part .left-part .directions .right-button{
    width: 35px;
    height: 25px;

    background-color: var(--quinary);

    border-radius: 0 15px 15px 0;
    border: 5px solid var(--tertiary);
    box-shadow: 2px 2px rgb(0, 0, 0, 0.4), inset 0px 2px rgb(256, 256, 256, 0.8);
    border-left: none;

    position: absolute;
    
    top: 50px;
    left: 70px;
    z-index: 2;
}

.bottom-part .left-part .directions .bottom-button{
    width: 25px;
    height: 35px;

    background-color: var(--quinary);

    border-radius: 0px 0px 15px 15px;
    border: 5px solid var(--tertiary);
    box-shadow: 2px 2px rgb(0, 0, 0, 0.4), inset 2px 0px rgb(256, 256, 256, 0.8);
    border-top: none;

    position: absolute;
    
    top: 75px;
    left: 45px;
    z-index: 2;
}

.bottom-part .left-part .directions .left-button{
    width: 35px;
    height: 25px;

    background-color: var(--quinary);

    border-radius: 15px 0 0 15px;
    border: 5px solid var(--tertiary);
    border-right: none;
    
    box-shadow: inset 2px 2px rgb(256, 256, 256, 0.8);

    position: absolute;
    top: 50px;
    left: 10px;
    z-index: 2;
}

.bottom-part .center-part{
    width: 260px;
    height: 220px;
    
    background-color: var(--primary);

    border-radius: 0 0 25px 25px;
    border: 5px solid var(--tertiary);
    border-top: none;

    position: relative;
    left: 0px;
    top: -20px;

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

}

/*.bottom-part .center-part::after{
    content: "";
    width: 65px;
    
    background-color: var(--primary);

    border-radius: 25px;
    border: 5px solid var(--tertiary);
    border-top: none;

    position: absolute;
    left: 155px;
    top: 200px;
}*/

.bottom-part .center-part .glass {
    width: 220px;
    height: 160px;

    background-color: var(--screen);
    
    border-radius: 10px 10px 0 0;
    border: 5px solid var(--tertiary);
    box-shadow: inset 3px 3px rgb(0, 0, 0, 0.4);

    position: relative;
    margin:auto;
    top: 25px;

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

.bottom-part .right-part{
    width: 150px;
    height: 200px;
    
    background-color: var(--primary);

    border-radius: 15px 0 0 15px;
    border: 5px solid var(--tertiary);
    border-right: none;
    box-shadow: inset -5px -5px rgb(0, 0, 0, 0.4),  inset 5px 5px rgb(0, 0, 0, 0.4);

    position: relative;
    right: 0px;

    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 15px; 
}

.bottom-part .right-part .start-select{
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
}

.bottom-part .right-part .start-select button{
    width: 40px;
    height: 13px;
    
    background-color: var(--quinary);

    border-radius: 5px;
    border: 3px solid var(--tertiary);
    box-shadow: 2px 2px rgb(0, 0, 0, 0.4), inset 2px 2px rgb(256, 256, 256, 0.8);

    position: relative;
}

.bottom-part .right-part .start-select button:nth-child(1){
    background-color: var(--quinary);

    border-radius: 15px 0 0 15px;
    margin-right: 5px;
    border: 3px solid var(--tertiary);
    box-shadow: 2px 2px rgb(0, 0, 0, 0.4), inset 2px 2px rgb(256, 256, 256, 0.8);

    position: relative;
}

.bottom-part .right-part .start-select button:nth-child(2){
    background-color: var(--quinary);

    border-radius:  0 15px 15px 0;
    border: 3px solid var(--tertiary);
    box-shadow: 2px 2px rgb(0, 0, 0, 0.4), inset 2px 2px rgb(256, 256, 256, 0.8);

    position: relative;
}


.bottom-part .right-part .directions{
    margin: 60px 45px;
    display: flex;
    position: relative;
    align-items: center;
}

.bottom-part .right-part .directions button{
    width: 30px;
    height: 30px;

    background-color: var(--quinary);

    border-radius: 50%;
    border: 5px solid var(--tertiary);
    box-shadow: 2px 2px rgb(0, 0, 0, 0.4), inset 2px 2px rgb(256, 256, 256, 0.8);

    position: relative;
}

.bottom-part .right-part .directions .top-button{
    position: absolute;
    top: -40px;
}

.bottom-part .right-part .directions .right-button{
    position: absolute;
    left: 25px;
}

.bottom-part .right-part .directions .bottom-button{
    position: absolute;
    top: 10px;
}

.bottom-part .right-part .directions .left-button{
    position: absolute;
    left: -25px;
}

.nindendo-ds-body .on-off-1{
    position: absolute;
    width: 5px;
    height: 15px;
    border-radius: 15px;
    background-color: green;

    bottom: 15px;
    right: 170px;
}

.nindendo-ds-body .on-off-2{
    position: absolute;
    width: 5px;
    height: 15px;
    border-radius: 15px;
    background-color: var(--quinary);

    bottom: 15px;
    right: 185px;
}
