* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
}

.container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url(assets/hero.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

.title {
    font-size: 3rem;
    font-weight: 100;;
    color: #fff;
    text-align: center;
    margin-bottom: 1rem;
    animation: fadeIn .5s ease-in-out;	
}

p {
    font-size: 1.2rem;
    color: #fff;
    text-align: center;
    margin-bottom: 1rem;
    animation: moveRight 1.5s ease-in-out;
}

button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    color: #fff;
    background-color: #f1356d;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    animation: move-up .5s ease-in-out;
}

@keyframes move-up {
    0% {
        /* CSS properties */
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        /* CSS properties */
        opacity: 1;
        transform: translateX(0);
    }
    
}

@keyframes moveRight {
    0% {
        /* CSS properties */
        opacity: 0;
    }
    100% {
        /* CSS properties */
        opacity: 1; 
    }
    
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateX(-100px) scale(0.5);
        
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
        
    }
}   