* {
    margin: 0;
    padding: 0;
    font-family: Urbanist;
}
body {
    background-color: #a0a0a0;
    height: 100vh;
}
button {
    background-color: #2d3355;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 12px;
}
button:hover {
    background-color: #454d77;
}
header {
    background-color: #2d3355;
    color: #ffffff;
    height: 15vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
main {
    background-color: #e0d7c5;
    height: 75vh;
}
footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #c8aa64;
    height: 10vh;
}
.header-title {
    text-align: center;
}
.intro {
    text-align: center;
}
/*Titles for individual pages.*/
.pagetitle {
    padding: 3em;
}
h2 .pagetitle {
    text-align: center;
}
.projects {
    padding: 2em;
}
.footer-text {
    color: #ffffff;
    text-weight: bold;
    text-align: center;
}
