@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins-Regular.woff') format('woff2'),
    url('assets/fonts/Poppins-Regular.woff2') format('woff2');
}

html {
    font-family: "Poppins", sans-serif;
}

.top-head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

header {
    background-color: #d3d1c8;
    background-size: cover;
    color: #d3d1c8;
    height: 20%;
}

.top-head-logo {
    font-size: 70px;
    margin-left: 20px;
    color: rgb(220, 212, 212);
}

.top-head-buttons {
    margin-right: 20px;
    color: rgb(220, 212, 212);
}

.header-tab {
    font-size: 20px; 
    padding: 10px;
    color: rgb(220, 212, 212);
}

body {
    background-color: #d3d1c8;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0 auto;
    margin-bottom: -50 auto;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #d3d1c8;
    height: auto;
    margin-bottom: auto;
    margin-top: auto;
}

footer {

    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(0, 0, 0);
    background-color: #d3d1c8;
}

.footer-content {
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.back{
    display: flex;
    justify-content: center; 
    background-position: center;
    background-repeat: no-repeat;
    background-size:cover; 
    flex-direction: column;
}

/* Specific to page */

.welcome {
    background-color: #d3d1c8;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    text-align: center;
}

.home_welcome {
    justify-content: center;
    margin-top: 5%;
}

.home_picture {
    justify-content: center;
    border-radius: 10%;
}


a:link {
    color: rgb(0, 0, 0);
    background-color: transparent;
    text-decoration: none;
}
  
a:visited {
color: rgb(63, 63, 63);
background-color: transparent;
}
  
a:hover {
color: rgb(255, 255, 255);
background-color: transparent;
}



