@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@600&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    align-items: center;
    /* background-color: rgb(31, 210, 255); */
    background: url('./background.png');
    background-size: cover;
}

h1{
    font-size: 150px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.592);
    font-family: 'Dosis', sans-serif;
}

.container {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    background: rgba(0, 0, 0, 0.546);
    /* filter: blur(5px); */
    padding: 10px;
    border-radius: 20px;
    /* width: 360px; */
}

.input-btn {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
}

input {
    font-size: 17px;
    padding: 10px;
    padding-left: 20px;
    border-radius: 30px;
    /* width: 350px; */
    border: none;
    background-color: white;
    font-family: 'Courier New', Courier, monospace;
    width: 100%;
}

input:hover,
input:focus {
    outline: none;
    /* font-weight: 600; */
}

button {
    height: 50px;
    width: 50px;
    font-size: 30px;
    border-radius: 10px;
    margin-left: 10px;
    border: none;
    background-color: rgb(255, 255, 255);
    font-family: 'Courier New', Courier, monospace;
    line-height: 0px;
    font-weight: 600;
}

button:hover {
    transform: rotate(720deg);
    transition: all 1s;
    cursor: pointer;
    background-color: black;
    color: white;
}

#city-error {
    display: none;
    width: 100%;
    text-align: left;
    padding-left: 40px;
    color: rgb(31, 210, 255);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

#weathercard {
    display: none;
    flex-direction: row;
    align-items: center;
}

#weathercard img {
    width: 160px;
}



#placetemp {
    font-family: 'Courier New', Courier, monospace;
    font-size: 40px;
    color: yellow;
    font-weight: 700;
}

#weathertype {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: rgb(184, 184, 184);
}

#displaycityname {
    font-size: 40px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}