:root {
    --background-color: black;
    --background-color-card-primary: white;
    --background-color-card-secondary: white;
    --background-color-menu-primary:  rgba(211, 211, 211, 0.7);
    --background-color-menu-secondary:  rgba(211, 211, 211, 0.7);
    --background-color-button-primary: 4099FF;
    --background-color-button-secondary: 4099FF;
    --background-color-button-inactive: lightgrey;
    --main-color: #3B5998;
    --accent-color: #4099FF;
    --font-color-main: white;
    --font-color-second: black;
    --padding: 5px;
    --font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

html, body{  
  color: var(--font-color-main);
  font-size: 16px; 
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-snap-type: y mandatory;
  font-family: var(--font-family);
  background: var(--background-color);
  
}

#tobe{
    background-color: var(--background-color-card-primary);
    color: var(--font-color-second);
    margin: 20px;
    border-radius: 30px;
    height: calc(99vh - 30px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#tobelogo{
    border-radius: 30px;
    width: 60vw;
    height: auto;
}

#text1{
    color: var(--accent-color);
}

/* #header {
    left: 0px;
    top: 0px;
    width: 100vw;
    height: fit-content;
    display: flex;
    position: fixed;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: var(--padding);

}
#menu {
    display: flex;
    flex-direction: row;
    gap: 2px;
    background-color: var(--background-color-menu-primary);
    height: 100%;
    padding: var(--padding);
    border-radius: 35px;
}

img.logo{
    max-height: 50px;    
}

#logo{
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    background-color: var(--background-color-card-primary);
    padding: 5px;
    border-radius: 30px;
}

.buttonmenu{
    border-radius: 30px;
    color: white;
    display: flex;
    background-color: var(--background-color-button-inactive);
    height: 50px;
    width: 100px;
    align-items: center;
    justify-content: center;
    border-color: grey;
    border-style: solid;

}

#body{
    display: flex;
    justify-content: center;
    margin-top: 6vh;

    top: 0px;
    left: 0px;
}

.card{
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 90vh;
    width: 100vw;
    border-radius: 30px;
    justify-content: center;
    gap: 30px;
    background-color: white;
    padding: 5px;
}

#imgprofile{
    border-radius: 50%;
}

#profileinfo{
    color: black; 
    height: 100%;
    width: 40vw;
    max-width: 70vw;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: start;
}

#footer{
    color: black;
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 30vh;
    width: 100%;
    border-radius: 30px;
    justify-content: center;
    gap: 30px;
    background-color: gray;
    padding: 5px;

} */