:root {
    --clr-dark: #212121;
    --clr-light: #f4f4f4;
    --clr-brand: #244462;
    --clr-brand-light: #2479a9;
    --clr-brand-dark: #233343;
    --clr-accent: #955a1b;



    font-family: 'Montserrat', sans-serif;
}


*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    font: inherit;
}

body {
    min-height: 100vh;
}

img,
picture,
svg,
video {
    display: block;
    max-width: 100%;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100vh;
    z-index: -100;
}

main {
    /* background-color: var(--clr-light); */
    /* height: 100vh; */
    /* background-image: url('/images/nasa-Q1p7bh3SHj8-unsplash.jpg'); */
}

footer {
    width: 100%;
    height: 7rem;
    position: absolute;
    bottom: 0;
    background-color: var(--clr-brand);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
}

.footer-links {
    display: flex;
    justify-content: end;
    gap: 3rem;
}

.footer-links a{
    background-color: transparent;
    color: var(--clr-light);
    outline: none;
    border: none;
    cursor: pointer;
}

h1 {
    font-size: 1.6rem;
    color: var(--clr-dark);
    padding-block: 2rem;
}

.landing-page {
    width: 100%;
    height: calc(100vh - 7rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.landing-logo {
    /* min-width: 20rem; */
    /* min-width: 15rem; */
    width: 60%;
    max-width: 40rem;
    /* height: auto; */
    margin: 0;
}

.landing-page p {
    font-size: 0.8rem;
    padding: 1rem;
    width: 50%;
    text-align: center;
}

.btn {
    transition: all 0.2s ease
}

.btn:hover {
    transform: scale(1.1);
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.1rem;
        padding-inline: 1rem;
    }
    .landing-logo {
        width: 75%;
    }
    .landing-page p {
        width: 90%;
    }
}