*{
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Minecraft';
    src: url('fonts/Daydream.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


body{
    background: black;
    color:white;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    height: 100vh;
    font-family: 'Minecraft', sans-serif;
    letter-spacing: 2px;
    word-spacing: 6px;
}

#header{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    height: 10vh;
}

.projects{
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.mainMenu{
    justify-content: center;
    align-items: center;
    height: 10vh;
    flex-direction:column;
}

.goBackToMenuButton{
    justify-content: center;
}

.aboutMeContent{
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#firstInteraction{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0px;
}
#firstSection{
    border: 1px solid white;
    border-radius: 5px;
    padding: 10px;
    margin: 10px;
    width: 50%;
}


#faceImage{
    width: 130px;
    height: 130px;
    background-image: url(images/face.png);
    background-size: cover;
    border: 1px solid white;
    border-radius: 30px;
    margin-right: 10px;
}

.credits{
    justify-content: center;
    align-items: center;
    height: 30vh;
    flex-direction:column;
}

footer{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;
}

#projects, #aboutMe, #credits{
    margin: 2px;
    font-size: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#projects:hover, #aboutMe:hover, #credits:hover{
    cursor: pointer;
    color: red;
}

.goBackToMenuButton:hover{
    cursor: pointer;
    color: red;
}

#p:hover,#o:hover,#r:hover,#t:hover,#f:hover,#oo:hover,#l:hover,#i:hover,#ooo:hover{
    color: red;
}

#github{
    width: 40px;
    height: 40px;
    background-image: url(images/githubLogo.png);
    background-color: white;
    background-size: cover;
    cursor: pointer;
    border: 1px solid white;
    border-radius: 20px;
}

#github:hover{
    background-color: red;
}