* {
    margin: 0;
    padding: 0;
  }

body {
    width: 100%;
    height: 100%;
    background-color: rgb(5, 25, 35);
    color: white;
    font-family: SanFranProNormal;
}

#header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px;
    height: 100vh;
    margin-top: -10%;
}

#header h1 {
    display: inline-block;
    color: #0077b6;
    width: 50vw;
    font-size: 48pt;
    text-align: center;
    font-family: ltSaeda;
}

#headerPara{
    display: inline-block;
    width: 50vw;
    font-size:25pt;
    text-align: center;
    color: white;
    font-family: SanFranProNormal;
}

.sparediv{
    height: 60vh;
}

@media (max-width: 768px) {
     #header {
        flex-direction: column;
        padding: 20px;
        margin-top: 80px;
    }

    #header h1 {
        width: 100%;
        font-size: 48px;
    }

    #header p {
        width: 100%;
        padding: 0;
        text-align: center;
        margin: 0;
        font-size: 22pt;
    }

    #box {
        height: 75vh;
        width: 100%;
        padding: 10px;
    }
    nav li {
        display: block;
        width: 100%;
        margin: 5px 0;
    }

    #projectsContainer {
        margin: 10px;
        padding: 10px;
    }

    #box h2 {
        font-size: 18px;
    }

    #contactPara{
        min-height: 100vh;
    }

    #contactPara p {
        font-size: 14px;
    }

    #emailForm input,
    #emailForm textarea {
        width: 100%;
        font-size: 14px;
    }

    #emailForm button {
        width: 100%;
        margin: 5px 0;
        font-size: 14px;
    }
    .logo-container{
        min-width: 300px;
        overflow: scroll;
    }
    .logo-container i{
        width: 50px;
    }
    .logo-container div{
        width: 100px;
    }
}

nav {
    text-align: center;
    background-color: rgb(0, 53, 84);
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 0;
    height: 44pt;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav li a {
    text-decoration: none;
    color: black;
}

nav ul {
    list-style: none;
}

nav li {
    display: inline;
    padding: 10px;
    margin: 10px;
    background-color: rgb(0, 100, 148);
    border-radius: 10px;
}

nav li a:hover {
    color: white;
}

.hidden {
    opacity: 0;
    filter: blur(2px);
    transition: all 1.5s ease-in-out;
}

.show {
    filter: blur(0);
    opacity: 1;
    transform: translateX(0);
}

@media(prefers-reduced-motion) {
    .hidden {
        transition: none;
    }
}
.prevProj{
    text-align: center;
    font-size: 36pt;
}

#projectsContainer {
    display: flex;
    justify-content: center;
    align-items: center;
}

#projectsContainer p, #projectsContainer ol{
    font-size: 14pt;
}

#box {
    width: 75vw;
    height: 45vh;
    background-color: rgba(0, 53, 84, 0.9);
    border-radius: 75px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
}

#box h2 {
    font-family: SanFranProBold;
    position: relative;
}
#box li a{
    text-align: center;
    text-decoration: none;
    color: white;
}

#box li a:hover{
    color: royalblue;
}

#box ol{
    padding: 10px;
    margin: 10px;
}

#emailForm{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10%;
    height: 50vh;
}

#emailForm input{
    width: 19vw;
}

#contactPara{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10%;
    height: 1vh;
    height: 20vh;
}

#contactPara p{
    font-family: coolvetica;
    font-weight: lighter;
    margin-top: 10%;
    width: 75vw;
    font-size: 24pt;
}

#stunningText{
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-name: stunningAnimation;
}

@keyframes stunningAnimation{
    0% { color: #f72585; }
  10% { color: #b5179e; }
  20% { color: #7209b7; }
  30% {color: #560bad;}
  40% {color: #480ca8;}
  50% {color: #3a0ca3;}
  60% {color:#3f37c9}
  70% {color: #4361ee;}
  80% {color: #4895ef;}
  90% {color: #4cc9f0;}
  100% {color: #f72585;}
}

.logo-container{
    display: flex;
    align-items: center;
    justify-content: center;
    height :50vh;
}

.logo{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: white;
    display: inline-block;
    margin: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.logo i{
    font-size: 90px;
}

a{
    text-decoration: none;
}

.hiddenLeft{
  opacity: 0;
  filter: blur(5px);
  transform: translateX(-100%);
  transition: all 1s;
}

.logo:nth-child(1){
    transition-delay: 0ms;
}
.logo:nth-child(2){
    transition-duration: 600ms;
}

.logo:nth-child(3){
    transition-duration: 800ms;
}

.logo:nth-child(4){
    transition-duration: 1000ms;
}

#name, #email{
    width: 64px;
    height: 24pt;
    border-radius: 20px;
    border: none;
    padding: 5px;
    font-family: SanFranProNormal;
}

textarea{
    width: 19.5vw;
    height: 60pt;
    font-size: 12pt;
    border-radius: 10px;
}

button{
    padding: 5px;
    border-radius: 10px;
    border: none;
    margin: 0 5px 0 5px;
}

#responsiveText{
    transition: all 900ms ease-in-out;
}