
@font-face {
    font-family: "caviar";
    src: url("../fonts/CaviarDreams.ttf");
}

*{
    margin: 0;
    padding: 0;
}

html,body{
    height: 100%;
}

body{
    font-family: "caviar";
    background-color: #140e10;
}

#home{
    background-image: url(../img/background.jpg);
    background-size: cover;
    background-position-x: -10rem;
    background-position-y: 11rem;
    background-repeat: no-repeat;
    color: white;
    display: flex;
    flex: 1;
    height: 100%;
}

@media (min-width: 600px)
{
    #home {
    background-position-x: 8rem;
    background-position-y: 7rem;
    }
}

@media (min-width: 900px)
{
    #home {
    background-position-x: center;
    background-position-y: center;
    }
}


#home-text{
    margin: auto;
    padding: 1rem;
    text-align: center;
}

@media (min-width: 600px)
{
    #home-text
    {
        margin-right: 7rem;
    }
}

#home-text h1{
    font-size: 2.4rem;
    padding: 1rem;
}

#home-text h2{
    font-size: 1.4rem;
    
}


#home-text h3{
    font-size: 1rem;
    
}

@media (min-width: 600px)
{
    #home-text h1{
        font-size: 6rem;
        padding: 1rem;
    }

    #home-text h2{
        font-size: 1.7rem;    
    }

    #home-text h3{
       font-size: 1.4rem;
    }

}



#home-text p {
    padding: 1rem;
}

a {
    color: white;
}