@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body{
    width: 100%;
    height: 100vh;
    background-image: url(../images/bg-bussola.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

main.bussola{
    width: 100%;
    height: 100%;
}

section.escolher-city{
    width: 50%;
    height: 100%;
    background-color: #00000096;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.img-logo{
    width: 350px;
}

.img-logo img{
    width: 100%;
}

.select-city h1{
    margin: 40px 0;
    color: #fff;
    font-size: 2.5em;
    line-height: 40px;
}

.select-city select{
    width: 100%;
    padding: 10px;
    font-size: 20px;
    background-color: #000;
    border: 0;
    outline: 0;
    color: #ff0009;
    cursor: pointer;
}

.select-city select option{
    border: 0;
    outline:0;
    cursor: pointer;
}

.select-city{
    text-align: center;
}

.select-city button{
    padding: 10px 20px;
    margin-top: 30px;
    font-size: 20px;
    background-color: #000;
    color: #ff0009;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
}

@media screen and (max-width: 1020px) {
    section.escolher-city{
        width: 100%;
        background-color: #000000aa;
    }
}
