@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;600;700;800&display=swap');

*{
    margin: 0;
    padding: 0;
    
    box-sizing: border-box;
}

html, body{
    height: 100vh;
}

body{
    background-size: cover;
    background-image: url("../images/bg.jpg");
    background-repeat: no-repeat;
    background-position: center center;

    display: flex;    
    justify-content: space-evenly;
    align-items: center;    
}


.logo{
    display: flex; 
    justify-content: left;
    align-items: center;

    width: 40%;
    height: 100vh;
}

.info{
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding-left: 2rem;
    padding-right: 2rem;

    gap: 3rem;

    width: 50%;
    height: 100vh;
}

.info p{
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;

    text-align: center;
    text-shadow: 0 0 10px rgba(0,0,0,.5);

    margin: 0;    

    color: #fff;
}

.info div{
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;
}

.info div p{
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;

    text-shadow: 0 0 5px rgba(0,0,0,.5);

    margin: 0;

    color: #fff;
}

.info div p:last-child{        
    font-weight: 700;        
}

.info div.button{
    font-family: 'Raleway', sans-serif;
    font-size: 2rem; 
    font-weight: 700;

    text-shadow: 0 0 5px rgba(0,0,0,.5);

    padding: 1rem 4rem;
    
    color: #fff;

    border-radius: 3rem;
    border: 1px solid #fff;
}