*{
    margin: 0;
    padding: 0;
}

#webContainer {
    width: 100%;
    height: 100vh;
    display: block;
    margin-left: auto;
    margin-right: auto;
    overflow: auto !important;
    border-top: 5px;
    border-bottom: 5px;
}

#header {
    height: fit-content;
    width: 100%;
    background-color: rgb(0,140,255);
}

.shade {
    height: 15px;
    background-color: rgb(0,106,212);
}

h1 {
    color: white;
    text-align: center;
    font-size: 80px;
    padding: 40px;
    padding-bottom: 1px;
    font-family: sans-serif;
}

#formLink {
    text-align: center;
    padding-bottom: 20px;
}

#iceberg {
    position: relative;
    display: inline-block;
    max-width: fit-content;
    height: fit-content;
    margin-left: auto;
    margin-right: auto;
}

#icebergImage {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    background: black
}

#tiers {
    position: absolute;
    height: 100%;
    width: 100%;
}

.tier {
    height: 10%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-content: space-evenly;
    overflow: inherit;
    text-overflow: inherit;
    white-space: normal;
    text-align: justify;
}

.entry {
    display: flex;
    align-self: auto;
    padding: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-family: sans-serif;
    font-weight: 700;
    font-size: larger;
    color: red;
    text-shadow: 2px 2px 1px black;
}

.entry:hover, .entry:active {
    color: coral;
    cursor: pointer;
}

#newDescription {
    width: 450px;
    height: 175px;
}

#formContainer {
    background-color: rgb(203, 228, 222);
    height: fit-content;
    max-width: 450px;
    width: fit-content;
    padding: 15px;
    margin: auto;
}

#rawDataDisplayBackgorund {
    margin: 5px;
    margin-top: 35px;
    padding: 5px;
    background-color: rgb(44, 51, 51);
}

#rawDataDisplayBackgorund p {
    color: aliceblue;
}

#submitForm {
    margin: 20px;
    margin-left: 5px;
    padding: 15px;

}

#infoSection {
    width: 100%;
    height: 0vh;
    background-color: rgb(39, 55, 77);
    padding-top: 5px;
    position: fixed;
    bottom: 0px;
    border-top: 5px solid black;
    display: none;
    overflow: auto;
}

#entryTitle {
    font-size: 10vmin;
    padding-top: 10px;
    padding-bottom: 10px;
    text-shadow: 5px 5px black;
    text-align: center;
    text-overflow: clip;
}

@media screen and (min-width: 700px) {
    #entryTitle {
        font-size: 7vmin;
  }
}

.entryInfo {
    font-family: sans-serif;
    color: rgb(221, 230, 237);
    padding-left: 25px;
    padding-right: 25px;
}

#entryDescription {
    padding-top: 20px;
    padding-bottom: 10px;
}

#infoSlim {
    width: 90%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

#blackout {
    width: 100%;
    height: 100%;
    background-color: black;
    position: fixed;
    bottom: 0px;
}