html, * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body:not(nav){
    overflow-x: hidden;
}

#home-banner {
    background-image: url('/webroot/images/banner.jpeg');
    background-position: center;
    height: 800px;
}

#navbar .w-0 {
    width: auto !important;
}

#planes img {
    width: 600px;
    /* height: 300px; */
}

#planes h3 {
    width: fit-content;
    margin: 0.8em auto;
    padding: 5px;
    background-color: deepskyblue;
}

#calendar table tbody tr th {
    vertical-align: middle;
}

#footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

#footer img {
    height: auto;
    margin: 0px 10px;
}

#gototop {
    position: fixed;
    bottom: 10px;
    right: 10px;
}

#gototop a {
    width: 30px;
    height: 30px;
}

@media screen and (max-width: 768px) {
    #navbarText img {
        width: 300px;
    }

    #planes .row div div {
        flex-direction: column !important;
    }

    #gototop {
        bottom: 30px;
        right: 30px;
    }
}