html {
    height: 100%;
    margin: 0;
}

body {
    font-family: "Bricolage Grotesque", sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background: url('../img/bg.jpg') no-repeat center center fixed; /* stretch to fit */
    background-size: cover;
}

div#app {
    background-color: rgba(0, 0, 0, 0.3); /* semi-transparent black */
    width: 80%;
    padding: 20px;
}

h1 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 700;
    font-size: 8vw;
    margin: 0.2em 0;
    color : #ff0000;
    text-shadow: 2px 2px 4px #000000;
}

h2 {
    font-size: 2em;
    margin: 0.2em 0;
    color: #fff;
    text-shadow: 2px 2px 4px #000000;
}

footer {
    position: absolute;
    bottom: 0;
    left:0;
    right:0;
    width: 100%;
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 2px #000000;
    background-color: rgba(0, 0, 0, 0.3);

}

img.img-fluid {
    max-width: 100%;
    height: auto;
}

/* breakpoints for responsiveness, logo */
@media (max-width: 768px) {
    div#logo img {
        max-width: 150px;
    }
}
@media (min-width: 769px) {
    div#logo img {
        max-width: 225px;
        height: auto;
        margin-bottom: 20px;
}
}

/* some modern button */
a.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.3em;
    color: #fff;
    background-color: #ff0000;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

a.btn:hover {
    background-color: #cc0000;
}

div#socials {
    padding: 10px;
}

div#socials a {
    color: #fff;
    margin: 10px 15px;
    font-size: 1.5em;
    text-decoration: none;
    transition: color 0.3s ease;
}

div#socials a:hover {
    color: #ff0000;
}