* {
    border: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

html {
    background-color: #000;
}

body {
    background-image: url('../assets/headerBG.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

header {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

main {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 50vw;
}

.socialLink {
    font-size: 28px;
    text-decoration: none;
    color: white;
    padding: 10px;
    transition: color 1s;
}

.socialLink:hover {
    color: black;
}

.headerEmoji {
    max-width: 25vw;
}

.headerTitle {
    max-width: 30vw;
}

.socMedLinks {
    background-color: #f64c80;
    padding: 20px;
    border-radius: 10px;
    list-style: none;
    display: flex;
    border: 5px white solid;
}

.mapBTN {
    padding: 20px;
    padding-bottom: 10px;
    font-size: 14px;
    margin-top: 20px;
    border-radius: 10px;
    background-color: #f64c80;
    color: white;
    border: 5px white solid;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
}

.showList {
    background-color: #000;
    padding: 40px;
    border: 5px solid #fff;
    border-radius: 10px;
    color: #fff;
    list-style: none;
    width: 100%;
    max-height: 70vh;
    overflow: scroll;
}

.showListItem {
    border-bottom: solid #f64c80 1px;
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.container {
    padding: 10px;
}

.mapContainer {
    width: 70vw;
}

#map {
    height: 70vh;
    border: 5px solid #fff;
    border-radius: 10px;
}

.formBody {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
}

.formBody input {
    border: #000 solid 2px;
    font-size: 25px;
    padding: 5px;
    margin-bottom: 10px;
}

.submitButton {
    width: 100%;
    margin-top: 20px;
}

.copyrightInfo {
    padding: 10px;
    color: #fff;
    text-align: center;
}

.copyrightInfo a {
    text-decoration: none;
    color: #fff;
    transition: color 0.2s ease-in;
}

.copyrightInfo a:hover {
    color: #f64c80;
}



@media (width < 680px) {
    .headerTitle {
        max-width: 65vw;
    }
}


@media (width < 490px) {
    .headerEmoji {
        max-width: 80vw;
    }

    .headerTitle {
        max-width: 80vw;
    }

    .socialLink {
        font-size: 22px;
    }
}

@media (width < 390px) {
    .socMedLinks {
        padding: 10px;
    }
}