* {
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: aliceblue;
    background-color: rgb(77, 77, 77);

}
.container-box{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    width: clamp(20rem,26vw,26rem);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-radius: 10%;
    background-color: rgb(77, 77, 77);
    color: aliceblue;
    box-shadow: 5px 5px 10px gray, -5px -5px 10px rgb(161, 161, 161);
}

h4 {
    font-size: clamp(4rem,7vw,5rem);
    font-weight: 400;
    margin-top: 2rem;
}

.refresh {
    font-size: 4rem;
    font-weight: 800;
    width: 30%;
    background-color: rgb(77, 77, 77);
    color: rgb(197, 196, 196);
    box-shadow: 3px 3px 6px gray, -2px -3px 5px rgb(161, 161, 161);
    border-radius: 100%;
}

.refresh:hover{
    box-shadow: inset 0 2px 4px rgba(255, 160, 160, 0.1);
}
.location-div{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    font-size: 3rem;
    margin-top: 8%;

}
 #location {
     font-size: clamp(2rem, 4vw, 2.5rem);
     background-color: rgb(77, 77, 77);
     color: aliceblue;
     border: none;
     outline: none;
     appearance: none;
     text-align-last: center;
     margin-left: 0.5rem;
     padding: 0.2em 0.5em;
     border-radius: 0.5rem;
 }
 #location option {
     background-color: rgb(77, 77, 77);
     color: white;
 }