@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: url('/assets/images/vernonia.png') no-repeat center center fixed;
    background-size: cover;
}

h1 {
    font-weight: 200;
    font-size: 4rem;
    letter-spacing: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    @media (max-width: 768px) {
        font-size: 2.5rem;
        letter-spacing: 0.5rem;
    }
    @media (max-width: 480px) {
        font-size: 2rem;
    }
}

h2 {
    font-weight: 200;
    font-size: 2rem;
    letter-spacing: 0.5rem;
    color: #ffffff;
    @media (max-width: 768px) {
        font-size: 1.5rem;
    }
    @media (max-width: 480px) {
        font-size: 1.25rem;
    }
}

.logo_text {
    text-align: center;
}

/* Logo Container */

.logo_container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
}
