html {
    font-family: 'Montserrat', sans-serif;
    margin: auto;
}
body {
    background-image: url("images/background.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}
h1 {
    color: white;
}
.logo {
    width: 150px;
}
.powered {
    font-size: small;
    color: white;
}
.search {
    margin-top: 10px;
    width: 100px;
}
.icao {
    text-align: center;
    text-transform: uppercase;
}
h1 {
    margin-top: 0;
}
input[type=button]{
    background-color: #769dff;
    border: none;
    color: white;
    padding: 8px 10px;
    width: 100px;
    text-decoration: none;
    margin-top: 10px;
    border-radius: 10px;
    cursor: pointer;
  }
input[type=text] {
    background-color: transparent;
    border: none;
    outline: none;
    border-bottom: white solid 1px;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

#container{
    height: 100vh;
    width: fit-content;
}
#container-inside{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}