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

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
}

.logo {
    text-decoration: none;
    color: black;
}

.flex-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#header, #footer {
    width: 100%;
    padding: 25px;
}

#main {
    background-image: url("./img/components-bg.jpg"); 
    background-color: rgba(255,255,255,0.7);
    background-blend-mode: lighten;
    background-size: cover;
    width: 100%;
    height: 85%;
    padding-left: 25px;
}

.hero-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.text-center {
    text-align: center;
}

h1 {
    font-size: 5em;
}

.text-large {
    font-size: 2em;
}