* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

body {
    background: linear-gradient(90deg, #3fa3c4, #0081ffd9);
    min-height: 100vh;
    padding: 40px 20px;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

input {
    color: #000;
    min-width: 500px;
    padding: 10px 14px;
    border: none;
    border-radius: 20px;
}

#weather {
    display: flex;
    align-items: center;
    gap: 100px;
    margin-top: 30px;
}

#weather h1 {
    font-size: 50px;
}

#weather .left {
    line-height: 30px;
}

#weather .left,
#weather .right {
    text-align: center;
}

#details {
    margin-top: 40px;
}

h2,
h3 {
    font-weight: 400;
}

#info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 40px;
}

#info i {
    font-size: 20px;
}

hr {
    height: 1px;
    border: 0;
    background-color: #ffffff3d;
    margin: 15px 0 25px 0;
}

.margin-bottom {
    margin-bottom: 20px;
}

.skeleton {
    animation: skeleton-loading 1s linear infinite alternate;
}

@keyframes skeleton-loading {
    0% {
        background-color: hsl(200deg 20% 80% / 43%);
    }

    100% {
        background-color: hsl(200deg 20% 95% / 19%);
    }
}

.skeleton-title {
    width: 200px;
    height: 15px;
    border-radius: 2px;
}

.skeleton-text {
    width: 150px;
    height: 15px;
    border-radius: 2px;
}

.skeleton-img {
    border-radius: 100%;
    width: 50px;
    height: 50px
}
