*, *:before, *:after {
    box-sizing: border-box;
}


body {
    color: white;
    background-image: url(./media/background.png);
    background-color: #cc48af;
    background-size: cover;
    background-repeat:no-repeat;
    height: 100 vh;
    font-family: 'Poppins', sans-serif;
    overflow-y: hidden;
    overflow-x: hidden;
}

h1 {
    font-size: 2.5rem;
}

nav {
    position: absolute;
    width: 100vw;
    left: 0;
    top: 0;
}

.primary-nav {
    list-style: none;
    display: table;
    margin: -5px 0 0 0;
}

.primary-nav a {
    text-decoration: none;
    color: white;
}

ul > li {
    display: inline-block;
    margin: 0 7.3em;
    zoom:1;
    *display:inline;
    /* this fix is needed for IE7- */
}

.right {
 position: relative;
 left: 16vw;
 font-family: 'Source Sans Pro', sans-serif;
}

.right li {
    display: inline-block;
    margin: 0 6em 0 0;
    zoom:1;
    *display:inline;
}

.weather-container {
    top: 20vh;
    left: 10vw;
    position: absolute;
    height: 500px;
    width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.weather-container h2 {
    display: block;
    position: absolute;
    margin-right: 400px;
    margin-bottom: 400px;
}

.weather-container h1 {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 85px;
    font-family: 'Poppins', sans-serif;
}

.weather-container p {
    font-size: 23px;
    line-height: 50px;
    font-family: 'Source Sans Pro', sans-serif;
}

.weather-container::before {
    background: rgba(0, 0, 0, 0.5);
    display: block;
    position: absolute;
    content: '';
    height: 500px;
    width: 600px;
    border-radius: 10%;
    z-index: -1;
}

.weather-info {
    text-align: left;
    margin: 0 0 0 50px;
}


.search {
    font-size: 25px;
    border: none;
    outline: none;
    color: white;
} 

    /* styling search bar */
input[type=text]{
    background: rgba(0, 0, 0, 0.25);
    width:200px;
    height:25px;
    border-radius: 10px;
    text-indent: 1.15em;
    font-size: 0.9rem;
    font-family: 'Source Sans Pro', sans-serif;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgb(255, 255, 255);
  opacity: 1; /* Firefox */
}

button {
    position: relative;
    right: 45px;
    font-size: 0.9rem;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
}

footer {
    position: absolute;
    top: 90vh;
    left: 83.5vw;
    font-family: 'Source Sans Pro', sans-serif;
}