/*
Color scheme:
#16161d background
#1c1c24 background 2
#fffada primary color
*/

p,
a,
h1,
h3,
details {
    color: #fffada;
    font-family: "Aldrich", sans-serif;
    font-weight: 400;
    font-style: normal;
}

summary {
    font-size: 20px;
    padding: 5px;
}

details {
    margin: 5px;
    border: 2px #fffada solid;
}

details p {
    margin-left: 5px;
    font-size: 16px;
}

html {
    margin: 0;
    padding: 0;
}

body {
    background-color: #16161d;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    background-color: #1c1c24;
    border-left: 3px #fffada solid;
    border-bottom: 3px #fffada solid;
    border-right: 3px #fffada solid;
    border-radius: 0 0 10px 10px;
    min-width: fit-content;
    width: 40vw;
}

nav a {
    margin: 10px;
    font-size: 25px;
    text-align: center;
    flex: 1;
}

#introduction {
    display: flex;
    flex-direction: row;
    align-content: center;
    margin-top: 40px;
}

#introduction aside img {
    width: 10vh;
    height: 10vh;
    border-radius: 50%;
    border: 3px #fffada solid;
    margin-top: 5px;
    margin-left: 15px;
    margin-bottom: 0;
}

#introduction .notSlogan {
    font-size: 35px;
    margin-bottom: 2px;
    margin-top: 5px;
}

#slogan {
    font-size: 20px;
}

.seperator {
    margin-top: 20px;
    border: 2px #fffada solid;
    border-radius: 100%;
    margin-bottom: 20px;
}

.sectionTitle {
    display: flex;
    justify-content: center;
}

.projects {
    border: 2px #fffada solid;
    border-radius: 20px;
    margin: 10px;
}

.projects div {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.projects div img {
    height: 25px;
    width: auto;
    margin-left: 7px;
}

.projectTitle {
    font-size: 20px;
    margin-bottom: 5px;
    margin-left: 10px;
}

.projectDesc {
    margin-left: 10px;
    margin-bottom: 5px;
}

.projectLink {
    margin-left: 5px;
}

#contactSection {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contactSection .sectionTitle {
    margin-top: 0px; /* don't know what i did differently but this has space above it for no reason at all*/
}

#contactSection p,
#contactSection a {
    margin: 2px;
}
