* {
    padding: 0;
    margin: 0;
    font-size: "ubuntu", sans-serif;
}
/* header {
    height: 10vh;
    width: 100%;
    background-color: rgb(0, 0, 0);
    position: absolute;
    top: 0;
    border-bottom: 2px black solid;
    color: white;
} */



.dontfind {
    color: red;
}

.hide {
    display:  none;
}
.visible {
    display: block;
}

.wrrap { /* seria o body n prjeto */
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, #594cee 0%, #8dd0f5 100%);
    background-position: center; 
    background-size: cover; 
}

.wrrap2 {
    background-color: #0000004f;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    width: 100%;
}


.container {
    background-color: #5c54ed5c;
    box-shadow: rgba(0, 0, 0, .24) 0px 3px 8px;
    padding: 2rem;
    color: #fdfdfd;
}

.form h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.form-input-container {
    display: flex;
    /* margin-bottom: 40px; */
}

.form input {
    padding: .8rem;
    background-color: black;
    border: none;
    flex: 1;/* ocupar a area maior possivel */
    border-radius: 4px;
    color: #fff;
}

.form input:focus {
    outline: 0;

}

.form button {
    padding: 0.8rem;
    min-width: 50px;
    margin-left: 8px;
    background-color: #000000;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: .5s;
}

.form button:hover {
    background-color: #fff;
    color: #8dd0f5 ;
}

#weather-data {
    border-top: 1px solid #fff;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    text-align: center;
}
#weather-data h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.6rem;
}

#weather-data h2 i {
    font-size: 1rem;
}

#weather-data h2 span {
    margin: 0.6rem;
}

#country {
    height: 25px;
}

#description-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: .6rem 0;
}

#description {
    font-weight: bold;
    text-transform: capitalize;
}

#details-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

#details-container #humidity {
    border-right: 1px solid #fff;
    margin: .6rem;
    padding: .6rem;
}

.message {
    font-size: 30px;
    background-color: rgb(225, 75, 75);
    margin-top: 50px;
    padding: 10px 40px;
    color: wheat;
}

/* footer {
    height: 10vh;
    width: 100%;
    background-color: rgb(0, 0, 0);
    position: absolute;
    top: 90vh;
    border-top: 2px black solid;
    color: white;
} */