*{
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
    height: 100%;
    display: flex;
    background-image: url('res/img/backgrounds/bg_d_169.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

main{
    width: 100%;
}

.light-mode{
    background-image: url('res/img/backgrounds/bg_l_169.jpeg');
}

.lightdarkmode{
    height: 50px;
    width: 50px;
    border-radius: 25px;
    background-image: url('res/img/light-mode.png');
    background-size: cover;
    position: fixed;
    bottom: 50px;
    right: 10px;;
}

.light-mode .lightdarkmode{
    background-image: url('res/img/night-mode.png');
} 



.front a {
    color: aliceblue;
}

.light-mode .front a{
    color: black;
}

.front{
    display: flex;
    height: 50vh;
    width: 100%;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: aliceblue;
}

.menu{
    display: block;
}

.toggle-button{
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 45px;
    height: 30px;
    margin: 33px;
}

.toggle-button .bar{
    height: 6px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 100px;
}

.light-mode .toggle-button .bar{
    background-color: black;
}

.light-mode .front{
    color: black;
}


footer{
    height: 40px;
    width: 100%;
    background-color: orange;
    position: absolute;
    bottom: 0;
    font-size: 20px;
}

footer a{
    color: black;
}

.light-mode footer{
    background-color: black;
    color: aliceblue;
}

.light-mode footer a{
    color: aliceblue;
}


footer ul{
    width: 100%;
    height: 100%;
    justify-content: space-around;
    display: flex;
    align-items: center;
}

footer ul li{
    display: inline;
}


@media(aspect-ratio <= 1.5){

    body{
        background-image: url('res/img/backgrounds/bg_d_pad.jpeg');
    }

    .light-mode{
        background-image: url('res/img/backgrounds/bg_l_pad.jpeg');
    }

    .front{
        flex-direction: column;
        height: 40vh;
    }

}

@media(aspect-ratio <= 0.8){

    body{
        background-image: url('res/img/backgrounds/bg_d_phone.jpeg');
    }

    .light-mode{
        background-image: url('res/img/backgrounds/bg_l_phone.jpeg');
    }

    .front{
        flex-direction: column;
        height: 40vh;
    }

}