/*css/fr.css*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  html {
    font-size: 40px;
    line-height: 1.44;
    min-height: 100%;
  }
  
  body {
    color: rgba(250, 250, 250, 1);
    font-family: "Italiana", sans-serif;
    font-weight: 400;
    font-style: normal;
    
}
img {
    width: 100%;
/*sidenav*/
  }
  .sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: #FAFAFA;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 8px 43px;
    text-decoration: none;
    font-size: 25px;
    color: #35347b;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #DBDCD7;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 210px;
    font-size: 36px;
    margin-left: 50px;
}

.hamburger {
    display: flex;
    flex-direction: row-reverse;
    margin-right: 10px;
    margin-top: 15px;
}
/*Katerina*/
.name {
position: relative;
size: 100px;
}
.topleft {
  position: fixed;
  top: 8px;
  left: 16px;
  font-size: 30px;
}
/*description*/
.description{
position: relative;
size: 100px;
}
.bottomleft {
  position: absolute;
  bottom: 30px;
  left: 16px;
  font-size: 25px;
}

/*lens_paris*/
.container {
  position: relative;
  width: 50%;
}


.image {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
  margin-left: 50%;
  margin-right: 50%;
  padding: 20px;
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%)
}

.container:hover .image {
  opacity: 0.3;
}

.container:hover .middle {
  opacity: 1;
}

.text {
  color:rgb(243, 186, 146);
  background-color: rgb(39, 71, 123);
  font-size: 35px;
  padding: 12px 28px;

}


/*button*/
.btn {
  position: relative;
  width: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  border: 0px solid rgba(0, 0, 0, 0.553);
  background-color:beige;
  color: black;
  padding: 30px 0px;
  font-family: "Italiana", sans-serif;
  font-weight: 200;
  text-align:center;
  font-size: 30px;
  cursor: pointer;
  max-width: 240px;
}


.default {
  color: rgb(67, 77, 184);
 
}

.default:hover {
  background: #a2a2a1;
}
/*Sliderleft*/
body {
  margin: 0;
  padding: 0;
  color: beige;
  font-size: 100px;
  font-weight: bold;
}

.marquee {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: 200px;
  overflow-x: hidden;
}

.track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 20s linear infinite;
}


@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee2 {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: 200px;
  overflow-x: hidden;
}

.track2 {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee2 20s linear infinite;
}


@keyframes marquee2 {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}
