* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
    box-sizing: border-box;
}

body{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #06283D;
}

.box-principal {
    display: flex;
    flex-direction: column;
}

.vit {
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: #fff; */
    color: #00fa9a;
    font-family: 'Indie Flower', cursive;
    /* font-family: 'Arimo', sans-serif;
    font-family: 'Dancing Script', cursive; */
    /* text-transform: uppercase; */
    margin-bottom: 20px;
    font-size: 26px;
}

.container{
    position: relative;
    width: 400px;
    height: 105px;
    background: #fff;
    padding: 28px 32px;
    overflow: hidden;
    border-radius: 18px;
    font-family: 'Roboto', sans-serif;
    transition: 0.6s ease-out;
}

.search {
    width: 100%;
    height: min-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search input {
    color: #06283D;
    width: 80%;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    padding-left: 32px;
}

.search input::placeholder {
    font-size: 20px;
    font-weight: 500;
    color: #06283D;
    text-transform: capitalize;
}

.search button {
    cursor: pointer;
    width: 50px;
    height: 50px;
    color: #06283D;
    background: #dff6ff;
    border-radius: 50%;
    font-size: 22px;
    transition: 0.4s ease;
}

.search button:hover {
    color: #fff;
    background: #06283D;
}

.search i{
    position: absolute;
    color: #06283D;
    font-size: 28px;
}

.clima {
    text-align: center;
}

.clima img {
    width: 60%;
    margin-top: 30px;
}

.clima .temperatura {
    position: relative;
    color: #06283D;
    font-size: 4rem;
    font-weight: 800;
    margin-top: 30px;
    margin-left: -16px;
}

.clima .temperatura span {
    position: absolute;
    margin-left: 4px;
    font-size: 1.5rem;
}

.clima .descricao {
    color: #06283D;
    font-size: 22px;
    font-weight: 500;
    text-transform: capitalize;
}

.clima-detalhes {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.clima-detalhes .umidade, .clima-detalhes .vento {
    display: flex;
    align-items: center;
    width: 50%;
    height: 100px;
}

.clima-detalhes .umidade {
    padding-left: 20px;
    justify-content: flex-start;
}

.clima-detalhes .vento {
    padding-right: 20px;
    justify-content: flex-end;
}

.clima-detalhes i {
    color: #06283D;
    font-size: 26px;
    margin-right: 10px;
    margin-top: 6px;
}

.clima-detalhes span {
    color: #06283D;
    font-size: 22px;
    font-weight: 500;
}

.clima-detalhes p {
    color: #06283D;
    font-size: 14px;
    font-weight: 500;
}

.not-found{
    width: 100%;
    text-align: center;
    margin-top: 50px;
    scale: 0;
    opacity: 0;
    display: none;
}

.not-found img {
    width: 70%;
}

.not-found p {
    color: #06283D;
    font-size: 22px;
    font-weight: 500;
    margin-top: 12px;
}

.clima, .clima-detalhes {
    scale: 0;
    opacity: 0;
}

.fadeIn {
    animation: 0.5 fadeIn forwards;
    animation-delay: 0.5s;
}

@keyframes fadeIn {
    to {
        scale: 1;
        opacity: 1;
    }
}