*{box-sizing: border-box;}
@import url('https://fonts.googleapis.com/css2?family=Racing+Sans+One&display=swap');

html{
    scroll-behavior: smooth;
    font-family: sans-serif;
}

body{
    background-color: rgba(0, 0, 0, 0.904); 
    color: white; 
    margin: 0;
    
    
}
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}



/*KEZDŐKÉP*/
#kezdokepernyo{
    width: 100%;
    
    
    display: block;
    margin: auto;
    
}
video{
    width: 100%;
    height: auto;
    margin: auto; 
}


/*MAIN*/
main
{
    width: 100%;
    background-color: rgba(0, 0, 0, 0.349);
    margin: auto auto 50vh auto; padding: 2rem;
    
}





/*GOMB-fel*/
#gomb{
    border: none;
    outline: none;
    background-color: rgb(85, 12, 12); 
    cursor: pointer;
    display: none;
    text-align: center;
    border-radius: 50%;
    padding: 0.3rem;

    position: fixed;
    bottom: 1.5rem;
    right: 1rem;
    z-index: 99;

    transition: all;
    transition-delay: .1s;
    transition-duration: .4s;
}
#gomb:hover{background-color:rgb(255, 255, 255); transform: scale(1.1);}


/*SCROLLBAR*/
/* A scrollbar teljes szélessége */
::-webkit-scrollbar {
  width: 10px;
  height: 10px; /* vízszintes scrollbar */
}

/* A scrollbar háttérsávja */
::-webkit-scrollbar-track {
  background: #111;
  border-radius: 10px;
}

/* A mozgatható „fogantyú” */
::-webkit-scrollbar-thumb {
  background: rgb(61, 0, 0);
  border-radius: 10px;
}

/* Hover állapot 
::-webkit-scrollbar-thumb:hover {
  background: #900;
}*/


