/* FONTS */ 

@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@700&family=PT+Sans&family=Raleway:wght@300&display=swap');


/* HOME PAGE */ 

#remove-button {
    position: absolute;
    top: 0;
}

#search-button {
    background-color: #295886;
    position: relative;
    bottom: 3px;
}

#mid-logo {
    width: 25%;
    font-family: 'Bangers', cursive;
    transform: translate(-50%, -50%);
    position: absolute;
    letter-spacing: 3px;
    font-size: 3rem;
    text-align: center;
    border: 0.5px solid white;
    top: 88%;
    left: 50%;
    z-index: -1;
}

.custom-weather-icon {
    font-size: 75px;
    position: relative;
    left: 30px;
    color: #0b1c64;
}

body {
    width: 100%;
    height: 100vh;
    color: #fff;
    background: linear-gradient(60deg, #e7eced, #34bceb63, #8eb4ca);
    animation: magic 15s ease-in-out infinite;
    position: relative;
    background-size: 400% 400%;
}

#search-field {
    width: 40%;
    border: 2px solid #c7c8d7;
    height: 40px;
}

#welcome {
    color: #073094;
    font-family: 'Amatic SC', cursive;
    text-align: center;
    padding-top: 25px;
    font-size: 80px;
}


.search-bar {
    position: relative;
    top: 25px;
    text-align: center;
}

/* WEATHER CARDS */

img {
    width: 163px;
    height: 163px;
}

#outer-card-wrapper {
    margin: 25px;
    padding: 15px;
}

.inner-card-wrapper {
    background-color: #6d99a9;
    border: 6px solid #bdcece;
    text-align: center;
    min-width: 200px;
    max-width: 272px;
    min-height: 280px;
    max-height: 400px;
    margin-bottom: 20px;
}

.country-name {
    margin-bottom: 5px;
    font-family: 'PT Sans', sans-serif;
    font-size: 23px;

}

.weather-temp {
    font-size: 37px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.but-feels {
    margin-top: 0px;
    margin-bottom: 0px;
    font-style: italic;
}

.weather-description {
    font-family: fantasy;
    font-size: 24px;
    text-transform: uppercase;
    margin-top: 14px;
}

/* KEYFRAMES */ 

@keyframes magic {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}

/* MEDIA QUERIES */

@media (MAX-width: 575px) {
    img {
        width: 120px;
        height: 120px;

    }
    .inner-card-wrapper {
        max-height: 300px;
    }
    .weather-description {
        margin-top: 0px;
    }
    .responsive-div {
        display: flex;
        justify-content: center;
    }
}


@media (max-width: 400px) {
    .custom-weather-icon {
        visibility: hidden;
    }
}

@media (max-width: 653px) {
    #welcome {
        font-size: 62px;
    }
}