body{
    display: flex;
    flex-direction: column;
    min-height: 96vh;
}

section{
    margin-top: 15px;
}
section:nth-of-type(1) {
    background: #f8f9fa;
    padding: 40px 20px;
    border-radius: 20px;
}

h1{
    text-align: center;
    margin-bottom: 4px;
}

main{
    margin: 50px auto;
}

main>div:first-child{
    font-size: larger;
    font-weight: bolder;
    padding: 5vw;
}

#t{
    color:rgb(169, 4, 114);
    font-family: 'Jura', sans-serif;
    font-size: larger;
}

a{
    font-family: 'Slabo 27px', serif;
}

#quote_form{
    width: 90%;
    padding: 5vw;
    margin: auto;
    background: wheat;
    border-radius: 8px;
}

#quote_form>*{
    display: block;
    margin: 8px 0;
    width: 100%;
    min-height: 32px;
}


#quote_form>input[type=submit]{
    margin: auto;
    width: -moz-fit-content;
    width: fit-content;
    padding: 10px;
    border-radius: 5px;
    background-color: rgb(82, 42, 18);
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

#quote_form>input[type=submit]:hover,#quote_form>input[type=submit]:focus{
    background-color: rgb(156, 82, 35);
}

h2{
    margin-top: 50px;
}

h2::after{
    position: relative;
    content: "\00a0";
    width: 80px;
    height: 3px;
    left: 2%;
    background: rgb(0, 114, 63);
}

.showcase{
    display: flex;
    flex-direction: row;
}

.showcase>*{
    display: block;
    text-decoration: none;
    color: black;
    min-height: 100px;
    padding: 25px;
    margin: 12px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 0 3px black;
    transition: 0.3s ease-in-out;
    text-align: center;
}

.showcase>a:hover{
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.showcase img{
    display: block;
    margin: auto;
    width: 20vw;
    height: auto;
}

#order_btn{
    display: block;
    width:-moz-fit-content;
    width:fit-content;
    text-decoration: none;
    font-size: larger;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: white;
    padding:8px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    transition: 0.3s;
    margin: 12px auto;
}

#order_btn:focus,#order_btn:hover{
    background:rgb(42, 223, 148);
    transform:scale(1.1);
}

#order_btn:active{
    background:rgb(47, 255, 231);
    transform:scale(0.95);
}

a{
    transition: 0.3s;
}
a:focus,a:hover{
    color:red;
}
a:active{
    color:orange;
}

.header_title{
    display: flex;
}

.header_title>*{
    display: block;
}

#appMenu{
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
text-decoration: none;
}
#appMenu>*{
    display: block;
}

#appMenu>img{
    height: 70px;
    width: 70px;
}

.team-card {
      border: 1px solid #eee;
      border-radius: 16px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      background: #ffffff;
    }

    .team-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    }
    
.team-card h5 {
    font-weight: 600;
}
    .team-img {
      width: 110px;
      height: 110px;
      -o-object-fit: cover;
         object-fit: cover;
      border-radius: 50%;
      margin: 20px auto 10px;
      border: 4px solid #e9ecef;
    }

    .role {
      font-size: 0.9rem;
      color: #6c757d;
    }

    .profile-link {
      text-decoration: none;
      font-size: 0.9rem;
    }

@media only screen and (min-width: 720px){
    .header_title{
        padding:0 80px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}


@media only screen and (max-width: 720px) {
    .header_title{
        justify-content: space-between;
        margin: 30px 5px;
    }

    .showcase{
        flex-direction: column;
    }

    .showcase img{
        width: auto;
        max-width: 60%;
        max-height: 200px;
    }

}