/*NavBar*/
:root{
  scroll-behavior: smooth;
}

body{
  background-color: #FFFFF0 !important;
}

.nav{
  padding-top: 1.3em;
}

.header{
  position: relative;
  animation: fadeInAnimation ease 3.5s;
            animation-iteration-count: 1;
            animation-fill-mode: forwards;
}

.header h1{
  font-size: 3em !important;
}

.header p{
  font-size: 2em !important;
}

h1, h2, h3, h4, h5 {
  font-family: "Libre Baskerville", serif;
  font : weight 700;
  font-style: italic;
}


.nav-link{
    font-family: "Libre Baskerville", serif;
  font :weight 400;
  font-style: normal;
  font-size: 1.2em !important;
    padding-right: 2em !important;
  padding-left: 2em !important;
}

.nav a{
    color: #000 !important;
}

a:hover{
  color: #fac7d8 !important;
}

.nav li{
  border-right: 1.5px solid;
  display: inline-block;
  float: left;
  padding: 0 15px;
}

.nav li:last child{
  border-right: 0;
}

p{
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.2em !important;
}

a{
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
}

.libre-baskerville-regular {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
}

.libre-baskerville-bold {
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  font-style: normal;
}

.libre-baskerville-regular-italic {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: italic;
}


 @keyframes fadeInAnimation {
            0% {
                opacity: 0;
            }

            100% {
                opacity: 1;
            }
        }
.header::before{
  position: absolute;
  content: '';
  top:0; left: 0; right: 0; bottom: 0;
  z-index: -1;
      background-image: url('img/header.png');
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.7;
}


.header h1{
  text-align: center;
padding-top: 32vh;
  vertical-align:middle;
}

.header p{
  padding-bottom: 42vh;
  text-align: center;
  vertical-align: middle;
}

a:hover{
  opacity: 0.6;
}

/*About Me*/

.aboutme{
  padding-top: 80px;
  padding-bottom: 80px;
}

.matchtext{
  text-align:center;
}

.images{
  transition: 0.5s;
}

.images:hover{
transform: scale(1.05);
  z-index:2;
}

.striped-background{
background: repeating-linear-gradient(
  to right,
  #FAC5D7,
  #FAC5D7 10px,
  #ffffff 10px,
  #ffffff 20px
);

  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  padding-top: 50px;
  height: 100vh;
}

.content-box{
  background-color: white;
  padding: 50px;
  width: 80%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  justify-content: center;
  align-content: center;
  text-align: center;
}

.hvr-float {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}
.hvr-float:hover,
.hvr-float:focus,
.hvr-float:active {
  transform: translateY(-8px);
}

/*FOOTER*/

.footer{
  text-align: center;
  padding-top: 3em;
}

.footer h5{
  font-size: 1.2em !important;
  
}

.footer a{
  color: #000 !important;
  text-decoration: none;
  font-size: 1.2em !important;
}

/*GRAPHICS.HTML*/

.graphics{
padding-left: 5em !important;
  padding-right: 5em !important;
}

/*SCROLL*/
.stt {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgb(255, 209, 223) url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='currentColor' d='M352 352c-8.188 0-16.38-3.125-22.62-9.375L192 205.3l-137.4 137.4c-12.5 12.5-32.75 12.5-45.25 0s-12.5-32.75 0-45.25l160-160c12.5-12.5 32.75-12.5 45.25 0l160 160c12.5 12.5 12.5 32.75 0 45.25C368.4 348.9 360.2 352 352 352z'%3E%3C/path%3E%3C/svg%3E") center no-repeat;
  box-shadow: 0 0.25rem 0.5rem 0 gray;
  opacity: 0.7;
}
.stt:hover {
  opacity: 0.8;
}
.stt:focus {
  opacity: 0.9;
}
.stt:active {
  opacity: 1;
}