
/* Reset */
* {
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #fff;
  color: #000;
  line-height: 1.4;
  padding: 5%;
  padding-top: 4%;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* Header */
.page-divider {
  display: flex;
  align-items: center;
  justify-content: center; /* centers horizontally */
  max-width: 1500px;  /* optional: keeps line from being too wide */
  margin: 0 auto 0 auto; 
}

#title {
    animation: slideInLeftIntro 1s ease;
}

.animationIn{
    animation: slideInLeft 2s ease;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

.animationUp{
    animation: slideUp 2s ease;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

.animationDown{
    animation: slideDown 2s ease;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

.title {
    font-size: 40px;
    margin-right: 20px;
    white-space: nowrap;
    font-family: 'Courier New', Courier, monospace;
}

.line {
  flex: 1;
  height: 1px;
  background-color: #000;
}


.section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 100px;
  margin-bottom: 100px;
}

#first {
    margin-bottom: 150px;
    margin-top: 50px;
}

.vert {
    display: flex; 
    flex-direction: column;
    align-items: center
}

.rev {
    justify-content: left;
}

.text-big h1 {
    font-size: 72px;
    font-weight: 700;
    transform: translateY(260px);
    animation: slideUpIntro 2s ease;
  
}

h2 {
    font-size: 36px;
    font-weight: 700;
    transform: translateY(260px);
    animation: slideUpIntro 2s ease;
}

.text-list {
    font-size: 24px;
    line-height: 1.6;
}

.image-box-right {
    display: flex;
    width: 900px;
    height: 600px;
    background-color: rgb(106, 125, 141);
    animation: slideInRight 2s ease;
    margin-left: 100px;
}

.image-box-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: colorize 6s forwards;
}

.image-box-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1000px;
    height: 300px;
    background-color: rgb(106, 125, 141);
    margin-bottom: 60px;
}

.image-box-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: colorize 6s forwards;
}

.image-box-left {
    display: flex;
    width: 300px;
    height: 300px;
    margin-left: 120px;
    margin-right: 60px;
    background-color: rgb(106, 125, 141);
}

.image-box-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: colorize 6s forwards;
}


@keyframes colorize {
    from {
        filter: grayscale(100%);
    }
    to {
        filter: grayscale(50%);
    }
}

@keyframes slideInLeftIntro {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}


@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
        filter: blur(4px);
    }
    to {
        transform: translateX(0);
        opacity: 1;
        filter: blur(0px);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
        filter: grayscale(100%);
        filter: blur(4px);
    }
    to {
        transform: translateY(0);
        opacity: 1;
        filter: grayscale(50%);
        filter: blur(0px);
    }
}



@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
        filter: blur(4px);
    }
    to {
        transform: translateY(0);
        opacity: 1;
        filter: blur(0px);
    }
}

@keyframes slideUpIntro {
    from {
        transform: translateY(310px);
        opacity: 0;
    }
    to {
        transform: translateY(260px);
        opacity: 1;
    }
}










/* Button */
.button-container {
  text-align: center;
  margin-top: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid #000;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #000;
  color: #fff;
}

/*
.page-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.page-title {
    font-weight: bold;
    font-size: 28px;
    margin: 20px;
    white-space: nowrap;
    text-align: right;
}

.divider-line {
    flex: 1;
    margin-right: 40px;
    margin-left: 20px;
    align-items: center;
}

.divider-line hr {
    border: none;
    border-top: 2px solid #000;
    width: 400px;
    margin: 0;
    
}


<div class="page-divider">
    <div class="page-title">Nadja Green, Green Architecture</div>
    <div class="divider-line"><hr></div>
</div>




*/