*{
    /* The CSS box-sizing property allows us to include the padding and border in an element's total width and height.*/
    padding: 0;
    margin: 0;
    font-family: 'jost';
    text-decoration: none;
}
body{
    /*Setting of the background colour as well as the margin and font colour*/
    background-color:  #262e35;
    margin: 0;
    color: #F2E8CF;
    text-align: center;
    

}
/*banner*/
.banner{
    width: 100%;
    height: 5vh;
    background-color: #080e1d;

    display: table;
    border-bottom-style: solid; 
    border-color: #F2E8CF;
    border-width: 1px;
    margin:auto;
    position: sticky;

}
.banner h1{
    width: 5%;
    position: left;
    text-align: left;
    padding-left: 1%;
    display: table-cell;
    color: #F2E8CF;
    font-size: 250%;
    font-family: 'caveat', cursive;
    cursor: pointer;    



}
.navbar{
    width: 85%;
    margin: auto;
    padding: 1vh 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}
.navbar a{
    text-decoration: none;
}
.navbar ul li{
    list-style: none;
    display: inline-block;
    margin: 5px;
    position: relative;

}
.navbar ul li:hover{

    height: 1px;

    background: #F2E8CF;
    
    border-bottom: 1px solid #F2E8CF;

    transition: 0.5s;
}
.navbar ul li a{
    text-decoration: none;
    color: #F2E8CF;
    font-size: 120%;
}
.navbar ul li a:hover{
    color: #BC4749;
    
}
.navbar ul li::after{
    content: '';
    height: 1px;
    width: 0;
    background: #F2E8CF;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 0.5s;
}
.navbar ul li:hover::after{
    width: 100%;

    background-color: #F2E8CF;
    position: sticky;


}

@keyframes blinking {
    0% {
      opacity: 0;
  
    }
    100% {
      background-color: #F2E8CF;
      opacity: 100;
  
    }
  }
  #blink {
      margin: auto;

      width: clamp(12rem, 30vw, 20rem);
      height: clamp(0.2em, 0.3vw, 0.4rem);
      animation: blinking 2s infinite;
}
/*title*/
.content h1{
    font-family: 'IBM Plex Mono', monospace;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-top: 5vh;
    position: relative;
    display: inline-flex;
    width: max-content;
    letter-spacing: 2px;

}
.subtitle{
    font-size: clamp(1rem, 2vw, 2rem);
    opacity: 75;
    transform: translateY(1rem);
    font-family:'Lucida Sans',  sans-serif;
}
body {
    margin: 0;
    padding: 0;
}
