@import url('https://fonts.googleapis.com/css?family=Raleway:300,400');

body {
    font-family: 'Raleway', sans-serif;
	text-align: center;
}

@keyframes slideIn {
    from {
        transform: translateX(50px);
        filter: blur(5px);
        opacity: 0;
    }
    to {
        transform: translateX(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.landing-bg-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: url(/img/landing/landing-page-bkg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

img.landing-logo {
    width: 15rem;

    filter: blur(5px);
    opacity: 0;
    transform: translateX(50px);

    animation: .75s ease-in-out slideIn forwards;
}

h2 {
    padding-top: 1.25rem;
    font-size: 1.85rem;
    color: white;
    font-weight: 100;

    filter: blur(5px);
    opacity: 0;
    transform: translateX(50px);

    animation: .75s ease-in-out .37s slideIn forwards;
}

.area-buttons-wrap {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    text-transform: uppercase;

    filter: blur(5px);
    opacity: 0;
    transform: translateX(50px);

    animation: .75s ease-in-out .37s slideIn forwards;
}

.area-buttons-wrap a {
    text-decoration: none;
    cursor: pointer;
}

.area-button {
    border: 1px solid white;
    padding: 0.75rem 1.5rem;
    color: white;
    background: #ffffff0f;
    border-radius: 5px;
    box-shadow: 0 0 4px 0px black;
    cursor: pointer;
    transition: .4s;
}

.area-button:hover {
    transform: scale(1.05);
    transition: .4s;
}

.tagline {
    color: #fff; 
    font-size: x-large; 
    margin-bottom: 30px;
}

a.banner-area {
    opacity: 0;
    animation: 1s ease-in-out 1s fadeIn forwards;
}

img.banner-img {
    margin-top: 5rem;
    border-radius: 10px;
    width: 100%;
    max-width: 23rem;
    transition: .4s;
}

img.banner-img:hover {
    transform: scale(1.05);
    filter:brightness(1.1);
    transition: .4s;
}