*{
    margin: 0;
    padding: 0;
}
html {
    min-height: 100%;
    background-image: url(images/bgreal.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    scroll-behavior: smooth;
    background-color: #000;

 }
.header{
    min-height: 100vh;
    width: 100%;
    background-image: url(images/bgreal.jpg);
    background-position: center;
    background-size: cover;
}
nav{
    display: flex;
    padding: 1% 5%;
    justify-content: space-between;
    align-items: center;
}

nav img{
    width: 150px;

}
.navilinks{
    flex: 1;
    text-align: center;
}
.navilinks ol li{
    list-style: none;
    display: inline-block;
    padding: 30px 40px;
    position: relative;
    color: #fff;
    cursor: pointer;
}

.navilinks ol li a{
    color: aliceblue;
    text-decoration: none;
    font-size: 20px;
    font-family:'Cormorant Garamond', serif;
}
.navilinks ol li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #fff;
    display: block;
    margin: auto;
    transition: 0.6s;
}
.navilinks ol li:hover::after{
    width: 100%;
}
.textbox{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.textbox head1{
    font-size: 70px;
}
.textbox p{
    font-size: 15px;  
    margin: 10px 0 40px;

}
.textbox head1::after{
    content: '';
    width: 53%;
    height: 2px;
    background: #fff;
    display: block;
    margin: auto;
}

.hero{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 32px;
    font-size: 18px;
    background: transparent;
    position: relative;
    cursor: pointer;

}
.hero:hover{
    border: 1px solid #fff;
    background: #48494B;
    transition: 2s;
}

/*--------------------quiz---------------------*/

.quiz {
    min-height: 50vh;
    width: 100%;
    background: #fff;
    background-position: center;
    background-size: cover;
    display: flex;
    position: relative;
  }
  
  .quiz h1 {
    width: 90%;
    color: #000;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    font-size: 38px;
    font-family: 'Special Elite', cursive;
  }
  
  .quiz img {
    width: 70%;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    float: right;
  }

  .buzzfeedLink {
    position: absolute;
    top: 50%; 
    left: 11%; 
    transform: translate(-50%, -50%); 
    margin-top: 50px;
    display: inline-block;
    font-size: 25px;
    font-family: 'Special Elite', cursive;
    color: #000;
    border: #000 3px solid;
    background: #ffd300;
    padding: 6px 6px;
    border-radius: 10px;
    

  }

  /**pictures**/

  .morepics {
    background-color: #fff;
    padding: 0;
    margin: 0;
    line-height: 0;
    width: 100%;
  }
  
  .morepics div {
    display: inline-block;
    background-color: transparent;
    padding: 0;
    margin: 0;
    vertical-align: top;
    width: calc(34.5% - 20px);
    height: 80vh; /* set a fixed height for the div elements */
    overflow: hidden; /* hide any image overflow */
    font-size: 20px;
    font-weight: 300;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    top: 10px;
    left: 10px;
  }
  
  .morepics div img {
    width: 100%;
    height: 100%
  }
  
  footer{
    color: #fff;
  }

  



 


  




