* {
    font-family: var(--mainFont);
    color: var(--mainColor);
}

body {
    background-color: var(--backgroundColor);
}

/* HEADER */

/* MENU */

ul {
    list-style-type: none;
    display: flex;
    gap: 24px;
    margin-left: 40px;
    margin-top: 20px;
}

ul a {
    font-size: 17px;
    text-decoration: none;
    color: var(--textColor2);
    font-family: var(--mainFont);
}

/* MAIN */
/* FIRST PAGE */

.content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* IMAGES */

.mainImages {
    display: flex;
    gap: 21px;
    justify-content: right;
    align-items: center;
    margin-right: 50px;
    margin-top: 100px;
    margin-right: 150px;
}

img {
    width: 354px;
    height: 531px;
}


/* TEXT */

.textStart,
.textEnd,
.highlight,
.textEnd2 {
    position: absolute;
    margin: 80px;
    font-family: "Jacquard";
    font-weight: 100;
}

.textStart {
    top: 30%;
    color: var(--textColor1);
    font-size: 40px;
}

.textEnd {
    top: 34%;
    color: var(--textColor1);
    font-size: 34px;
}

.highlight {
    top: 37%;
    color: var(--accentColor);
    font-size: 34px;
}

.textEnd2 {
    top: 40%;
    color: var(--textColor1);
    font-size: 34px;
}

/* TITELS */
.sima {
    color: var(--textColor2);
    font-family: "Aktura";
    font-size: 23px;
    letter-spacing: 0.1em;
    position: absolute;
    top: 82%;
    left: 40%;
}

.sasha {
    color: var(--textColor2);
    font-family: "Aktura";
    font-size: 23px;
    letter-spacing: 0.1em;
    position: absolute;
    top: 82%;
    left: 66%;
}

/* SECOND PAGE */

/* GALLERY */

/* GRID GALLERY / CSS*/
/* .gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr); 
  justify-items: stretch;                 
  width: 600px;                           
  margin: 40px auto 0;
}

.activeImage {
  grid-column: 1 / -1;
  justify-self: center;
  width: 600px;
  height: 900px;
}

.gallery img:not(.activeImage) {
  width: 100px;   
  height: 100px;
  object-fit: cover;
} */

.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px auto 0;
    width: 600px;
}

.activeImage {
    width: 600px;
    height: 900px;
    object-fit: cover;
}

.thumbs {
    display: flex;
    overflow-x: auto;
    width: 100%;
}

.thumbs img {
    flex: 0 0 auto;
    width: 100px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
}

.thumbs img.active-thumb {
    opacity: 1;
}

/* TEXT */ 

.titelImages2 {
    position: absolute;
    top: 40%;
    left: 80px;
}

.titelImages2 p {
    color: var(--textColor1);
    font-family: "Aktura";
    font-size: 40px;
    text-align: center;
}

.titelImages3 {
    position: absolute;
    top: 40%;
    right: 80px;
}

.titelImages3 p {
    color: var(--textColor1);
    font-family: "Aktura";
    font-size: 40px;
    text-align: center;
}

/* THIRD PAGE */

/* TEXT */

.about {
    position: absolute;
    margin: 80px;
    font-family: "Jacquard";
    font-weight: 100;
    top: 40px;
    color: var(--textColor1);
    font-size: 34px;
}

.about2 {
    position: absolute;
    font-family: "Jacquard";
    font-weight: 100;
    top: 200px;
    left: 550px;
    color: var(--textColor1);
    font-size: 34px;
}