h1{
    color: blue;
    font-size: 40px;
    text-align: left;
    }

.jumbotron{
    background-color: #00B5FF;
    padding: 50px 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.jumbotron img {
    width: 300px;
    margin: 30px;
}
.jumbotron h3, p{
    color: white;
}

.main-container {
    flex-direction: row;
    display: flex;
    justify-content: center;
}

.package-container {
    margin: 20px;
    padding: 16px;
    border: 3px solid black;
    border-radius: 16px;
    box-shadow: 5px 5px 10px gray;
}

.package-container p{
    color:black
}

.package-container img {
    width: 300px;
}

body {
    margin: 0;
}

button {
    background-color: #5fc8f5;
    padding: 10px;
    color: white;
    border-radius: 10px;
    border: none;
}

.left{
    margin-left: 60%;
}

table,th,td,tr,td {
    border: 1px solid black;
    border-collapse: collapse;
    padding: 10px;
}
th{
    background-color:#00B5FF;
    color: white;
}
.table {
    display: flex;
    justify-content: center;
    text-align: center;
}
.table img {
    width: 200px;
}

header {
    background-color: #00B5FF;
    color: white;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 50px;
    display: flex;
}
.header-title{
    text-align: left;
    color: white;
    margin: 14px;
    font-size: 18px;
}

nav {
    position: absolute;
    right: 0;
    display: flex;
}
a {
    text-decoration: none;
    color: white;
    float: left;
    padding: 15px;
}

footer {
    color: white;
    text-align: center;
    background-color: #00B5FF;
    padding: 10px;
    margin-top: 50px;
}

a:hover {
    color: black;
}

button:hover {
    cursor: pointer;
    background-color: #B8B6B6;
}

.title{
    text-align:center;
}

.package-container:hover{
    background-color:#E2DCDB;
}

.formcontainer{
    text-align: center;
    margin-top: 60px;
}
.formcontainer img {
    width: 300px;
}

.form{
    text-align: left;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

input{
    width: 100%;
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px;
    border-radius: 3px;
}
label {
    display: inline-block;
    margin-bottom: 5px;
    font-weight: bold;
}

select{
    width: 100%;
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px;
    border-radius: 3px;
}

.about{
    display: block;
    width: 50%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 10%;
    text-align: center;
}

.about h1{
    text-align: center;
    color: darkorange;
}

.avatar{
    width:250px;
}

.about h3{
    color: #2EC1AC;
}

.about p{
    color: black;
}