html{
    scroll-behavior: smooth;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}
.header {
    position: fixed;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding-top: 10px;
    padding-bottom: 10px;

    background: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 82%, rgba(148, 187, 233, 0) 100%);
}
.header a {
    text-decoration: none;
    color: black;
}


.title{
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(Luna.png);
    background-position: center;
    background-size: cover;
}

.nameplate  {
    position: absolute;
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-family: 'Times New Roman', Times, serif;
}
.nameplate h1{
    font-size: 4em;
    text-align: center;
    letter-spacing: 0.2EM;
    color: rgb(190, 190, 190)
}
.nameplate a{
    background-color: red;
    border: 1px solid white;
    border-radius: 30px;
    padding: 10px;
    height: 50px;
    letter-spacing: 0.6em;
    transition: background-color 0.2s ease-in-out;
    text-decoration: none;
    color: rgb(255, 255, 255);
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 500;
}

.nameplate a:hover{
    background-color: rgb(255, 109, 109);
    border: 1px solid black;
    transition: background-color 0.2s ease-in-out;
}
.about, .whyme, .goals, .speech{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.about h1, .whyme h1, .goals h1, .speech h1{

    font-family: 'Times New Roman', Times, serif;
}
