/*START FONTS*/
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@500&display=swap'); /* font-family: 'Dosis', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=La+Belle+Aurore&display=swap'); /* font-family: 'La Belle Aurore', cursive; */
/*END FONTS*/

body {
    padding: 0;
    margin: 0;
    background-color: black;
}
a {
    color: white;
    text-decoration: none;
}
a:hover {
    color: white;
    text-decoration: none;
}
a:visited {
    color: white;
    text-decoration: none;
}
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/background.jpg);
    background-size: cover;
    background-position: bottom right;
    background-repeat: no-repeat;
    z-index: 1;
}
.container {
    position: absolute;
    top: 150px;
    left: 10%;
    z-index: 2;
    font-family: 'Dosis', sans-serif;
    color: white;
    font-size: 50px;
}
.container .title {
    font-family: 'La Belle Aurore', cursive;
    font-size: 60px;
    line-height: 30px;
}
.container .title .titledesc {
    font-size: 20px;
}
.container .desc {
    margin-top: 50px;
    font-size: 20px;
    width: 450px;
}
.container ul {
    list-style-type: none;
    padding: 0;
    cursor: default;
}
.container ul li {
    width: 50px;
    overflow: hidden;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.3s;
    transition-property: width|padding;
}
.container ul li:hover {
   width: 260px;
}
.container .fmo {
    font-size: 35px;
    padding-bottom: 20px;
}
.lname {
    padding-left: 5px;
}

.background, .container {
    transition: 0.2s;
}

@media only screen and (max-width: 1200px) {
    .background {
        opacity: 0.5;
    }
    .container {
        font-size: 35px;
        left: 5%;
    }
    .container ul li {
        width: 35px;
    }
}
@media only screen and (max-width: 800px) {
    .background {
        background-position: 65%;
    }
}
@media only screen and (max-width: 500px) {
    .background {
        background-position: -650px;
    }
    .container {
        font-size: 35px;
        text-align: center;
        margin: 0;
        top: 50px;
        left: 0;
    }
    .container .title {
        font-size: 50px;
    }
    .container .desc {
        font-size: 18px;
        margin-top: 15px;
        position: relative;
        left: 50%;
        transform: translate(-50%);
        width: 90%;
    }
    .lname, .fmo {
        display: none;
    }
    .container ul li {
        display: inline;
        width: 40px;
        font-size: 40px;
        padding-left: 2.5px;
        padding-right: 2.5px;
    }
    .container ul {
        position: relative;
        top: -10px;
    }
    .container ul li: hover {
        width: 35px;
    }
}