* {
    box-sizing: border-box;
    font-family: Ubuntu, sans-serif;
}

html,
body {
    height: 100%;
    padding: 0;
    margin: 0;
}

#map {
    height: 500px;
}


/* The wrapper contains all of the page's content besides the footer, which is pushed to the bottom of the page */

.wrapper {
    position: relative;
    min-height: 100%;
    padding-bottom: 100px;
    overflow: auto;
}

.navbar {
    padding: 5px;
    margin: 0;
}

.table {
    width: 100%;
    overflow-x: auto;
    display: block;
    border-collapse: collapse;
}

.hero {
    position: relative;
    height: 600px;
    padding: 10px;
    margin: 0;
    background: white;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("https://ychef.files.bbci.co.uk/1600x900/p03phw7f.jpg");
    background-attachment: fixed;
    background-position: bottom center;
    background-size: cover;
}

.hero h1 {
    margin-top: 200px;
    font-size: 0.1rem;
    color: white;
    animation: title 1.2s forwards linear;
}

.hero p {
    font-size: 2rem;
    color: white;
    opacity: 0;
    animation: subtitle 1.2s forwards linear;
    animation-delay: 1.2s;
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    margin: 8px;
}

.about-section {
    padding: 50px;
    text-align: center;
    background-color: #474e5d;
    color: white;
}

.title {
    color: grey;
}

.button {
    border: none;
    outline: 0;
    display: inline-block;
    padding: 8px;
    color: white;
    background-color: #000;
    text-align: center;
    cursor: pointer;
    width: 100%;
}

.button:hover {
    background-color: #555;
}


/* keyframe animations which will be used to animate the title */

@keyframes title {
    from {
        opacity: 0;
    }
    to {
        font-size: 7.5rem;
        opacity: 1;
    }
}

@keyframes smaller-title {
    from {
        opacity: 0;
    }
    to {
        font-size: 5.5rem;
        opacity: 1;
    }
}

@keyframes subtitle {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}