* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    align-items: center;
    font-family: sans-serif;
    color: white;
    background: #36D1DC;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #5B86E5, #36D1DC);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #5B86E5, #36D1DC); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    
}

.title-text {
    font-size: 7vh;
    margin-bottom: 8vh;
    color: white
}

.input {
    text-align: center;
}

input[type="text"] {
    height: 4vh;
    width: 46vh;
    border-radius: 20px;
    border: 2px solid #f1faee;
    font-weight: bold;
    font-size: 1.5vh;
    text-align: center;
    color: #6c757d;
}

input[type=text]:focus {
    outline: none;
}

input[type=text]:focus::placeholder {
    color: transparent;
  }

input[type="submit"] {
    margin: 10px;
    height: 4vh;
    width: 8vh;
    border-radius: 20px;
    border: 2px solid #f1faee;
    font-weight: bold;
    font-size: 1.5vh;
    text-align: center;
    color: #6c757d;
    cursor: pointer;
}

.content {
    border-radius: 20px;
    padding: 15px;
    margin-top: 5vh;
    background-color: white;
    width: 35vh;
    height: auto;
    color: #1d3557;
}

.location {
    font-size: 6vh;
}

.location-section, .temperature {
    margin: auto;
    height: 30vh;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.temperature {
flex-direction: column;
}

.degree-section {
display: flex;
align-items: center;
}

.degree-section h2 {
   font-size: 5vh;
}

.temp-description {
    font-size: 2vh;
}

.icon-section {
    margin-top: -100%;
}