@import url("/resources/css/colors.css");
* {
    box-sizing: border-box;
}
h1{
    text-align: center;
    font-family: "Orbitron", sans-serif;
    font-size: 2.5rem;
    color: var(--light-color);
}
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    min-height: 90dvh;
    position: relative;
    /* overflow: hidden; */
}

.tag-line {
    font-family: "Orbitron";
    color: var(--light-color);
    animation: logo-p 3s;
}

@keyframes logo-p {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}



.hero-background-element-left {
    top: 100px;
    left: -100px;
    background-color: var(--hero-color-one);
    position: absolute;
    height: min(30vh, 400px);
    width: min(30vw, 400px);
    border-radius: 50%;
    filter: blur(130px);
    animation: gradient-left infinite 5s;
    z-index: 10;
}

.hero-background-element-right {
    bottom: 0px;
    right: 0px;
    background-color: var(--hero-color-two);
    position: absolute;
    height: min(50vh, 500px);
    width: min(40vw, 400px);
    border-radius: 50%;
    filter: blur(130px);
    animation: gradient-right infinite 15s;
    z-index: 10;
}

@keyframes gradient-left {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes gradient-right {
    0% {
        opacity: 0.6;
    }

    25% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }

    75% {
        opacity: 0.2;
    }

    100% {
        opacity: 0.6;
    }
}
.logo-tag-line{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    z-index: 50;
}
.hero-logo {
    width: min(35vh, 250px);
    height: auto;
    animation: logo-appear 3s;
}

@keyframes logo-appear {
    0% {
        opacity: 0%;
    }

    100% {
        opacity: 100%;
    }
}

.weather{
    top: 15px;
    left: 0px;
    margin-left: 5%;
    position: absolute;
    z-index: 15;
}


.city-list {
    border: var(--light-color) 2px solid;
    border-radius: 5px;
    width: 130px;
    height: 30px;
    background-color: var(--light-color);
    color: var(--bg-color);
    font-family: "Orbitron";
    
}

.city-list:hover {
    background-color: var(--bg-color);
    color: var(--light-color);
}

.city-list::selection {
    border: 0px var(--highlight-color) solid;
    background-color: var(--light-color);
}

.weather-info {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    list-style: none;
    font-family: "Orbitron";
    letter-spacing: 1.2px;
    font-weight: 400;
    color: var(--light-color);
}

