/* General styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Pathway Extreme', sans-serif;
}

/* Header styles */
header {
    position: relative;
    background-image: url("duotone-blue.jpg");
    background-size: cover;
    background-position: center;
    height: 100vh;
    
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
    padding-left: 5%;    
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding-left: 5%;
    padding-bottom: 2%;

    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
    color: rgba(105, 222, 225, 0.8);
}

h1 {
    font-size: 6rem;
    margin-top: 3rem;
    margin-bottom: 0;
    font-family: 'Pathway Extreme', sans-serif;
    text-shadow: 2px 2px 2px rgba(105, 222, 225, 0.3);
    color: rgb(213, 56, 127);
}

h2 {
    font-size: 3rem;
    margin-top: 10px;
    color: rgb(105, 222, 225);
}

@media screen and (max-width: 768px) {
    h1 {
        margin-top: 3rem;
        font-size: 4rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

