html,
body{
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    color: #134970;
    background: #EEF6FC;
    font-size: 20px;
    height: 100%;
    width: 100%;
}
#welcome-section {
    background: #134970;
    color: #EEF6FC;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    font-size: 30px;

}

#welcome-section .highlight {
    color:#C84C4A;
} 

.welcome-button{
    text-decoration: none;
    color: black;
    padding: 10px 20px;
    border: 2px solid black;
    font-size: 13pt;
    transition: all .5s;
    cursor: pointer;
}
#navbar {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    height: 50px;
    width: 100%;
    text-align: left;
    background: #C84C4A;
    font-size: 12pt;
    text-transform: uppercase;
    padding: 10px;
}

nav li{
    list-style: none;
    display: inline;
    margin: 20px;
}

nav a{
    width: 60px;
    text-decoration: none;
    color: black;
    transition: transform 0.3s ease-out;
}

nav a:hover{
    color: #134970;
    transform: translateY(8px);
}


#projects{
    padding-top: 60px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 80%;
    margin: 2rem;
    margin-bottom: 6rem;
}

.projects-header{
    grid-column-start: 1;
    grid-column-end: 3;
    justify-self: center;
    display: grid;
    justify-items: center;
}

.project-tile-link{
    display: grid;
    justify-items: center;
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: #EEF6FC;  
 
}

.project-tile-link:hover{
    color: #C84C4A;
}


.project-title {
    margin: 0;
    padding: 1.5rem 0.5rem;
    font-size: 2rem;
    border-radius: 5px;
    background: #134970;
    width: 100%;
}

iframe {
    margin: none;
    padding: none;
    line-height: 0;
    float: left;
    border-radius: 5px;
    width: calc(100vw * 0.45);
    height: 25vw;
}
@media only screen and (max-width: 768px){
    #projects{
        display: grid;
        grid-template-columns: 1fr;
    }
    .projects-header{
        grid-column-start: 1;
        grid-column-end: 2;
    }
    iframe{
        width: calc(100vw - 4rem);
        height: calc(62.5vw - 4rem);
    }
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 2px;
    font-size: 2rem;
  }
 
  
  
  #contact{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100vh;
    padding: 0 2rem;
    background: #134970;
    color: #EEF6FC;

  }
  .contact-links {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 980px;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.contact-links a{
    text-decoration: none;
    color: #EEF6FC;

}

.contact-links a:hover{
    color:#C84C4A;
}
  
