html {
    height: 100%;
    margin: 0;
    padding: 0;
} 

Body {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: black;
    color: white;
}

Main {
   flex-grow: 1;
}

.projectButton{
    width: 80px;
    height: 20px;
    padding: 4px 8px;
    margin: 5% auto;
    border: solid white 2px;
    border-radius: 15px;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    text-align: center;
    transition: all 0.2s ease-in-out;
    transform: translateY(-20px);
}

.projectButton:hover{
    background-color: #323232;
    border: solid #00a5ec 2px;
}

a{
    text-decoration: none;
}

.peopleButton{
    width: 80px;
    height: 20px;
    padding: 4px 10px;
    margin: 5% auto;
    border: solid white 2px;
    border-radius: 15px;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    text-align: center;
    transition: all 0.2s ease-in-out;
    transform: translateY(-20px);
}

.peopleButton:hover{
    background-color: #323232;
    border: solid #e9007f 2px;
}

.videoButton{
    width: 80px;
    height: 20px;
    padding: 4px 10px;
    margin: 5% auto;
    border: solid white 2px;
    border-radius: 15px;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    text-align: center;
    transition: all 0.2s ease-in-out;
    transform: translateY(-20px);
}

.videoButton:hover {
    background-color: #323232;
    border: solid #fff100 2px;
}

.headerstyle {
    display: flex; 
    flex-wrap: nowrap; 
    flex-direction: row; 
    gap: 50px; 
    border-bottom: thin solid white;
}

.menuindexpagina {
    display: flex; 
    flex-direction: row; 
    align-items: center;
    column-gap: 50px;
    margin-top: 25px; 
}

.menufinehome {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    padding: 10px;
    margin-left: 0px;
    margin-top: 40px;
}

.socialHome {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 60px;
    padding: 0px;
    margin-left: 0px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.menufinepagina{
    display: flex; 
    flex-direction: row; 
    justify-content: center; 
    column-gap: 50px; 
    margin-top: 50px; 
}

.footerstyle {
    display: flex; 
    align-items: center;
    background-color: #292929; 
    border-top: thin solid white;
    bottom:0;
    left:0;
    width:100%;
    max-width: 100%;
}

.footerwrite {
    display: flex; 
    flex-direction: column; 
    font-family: 'Open Sans', sans-serif;
    font-size: small;
    text-align: left;
    padding: 0px; 
    margin-left: 0px; 
    
}