body {
    background-image: 
    
    url("https://www.shutterstock.com/image-photo/night-view-tashichho-dzong-thimpu-600nw-611027855.jpg");
    
    background-size: cover;  
    background-position: center; 
    background-repeat: no-repeat;
    height: 100vh;  
}

img {
    width: 35%;
    margin-top: 30px;
}

nav {
    display:flex;
    flex-direction: row; 
    justify-content: flex-end;
    padding: 20px;

}
nav a {
    margin-left: 20px;
    text-decoration: none;
    color: rgb(243, 111, 17);    
    font-weight: bold;
    font-size:20px;
}

.main-content {

    filter:brightness(1.15) saturate(1.2) opacity(0.9);
    border-radius: 300px;
    text-align: center;
    /* margin-top: 50px; */
    color:rgb(242, 125, 29);
}
.main-content {
    width: 100%;
    padding: 40px;
}

h1 {
    font-size: 72px;
    color: rgb(209, 123, 44);
    margin-bottom: 10px;
}

h2 {
    font-size: 24px;
    color: #c17440;
    font-weight: 400;
}

input {
    box-sizing: border-box;
    display: block;
    border-radius: 24px;
    border: 1px solid rgb(180, 181, 184);
    height: 44px;
    margin: 0 auto 29px;
    max-width: 564px;
    width: 90%;
    padding-left: 30px;
    font-size: 16px;
}

button {
    margin-top: 30px;
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    background-color: rgb(252, 115, 11);
    color: white;
    border-radius: 8px;
    cursor: pointer;
}

button:hover {
    background-color: rgb(236, 139, 12);
}

footer{
   background-color:#ecab66;
   color:rgb(232, 113, 28);
   text-align:center;
   padding:10px;
   margin-top:1050px;
}

/* Form container */
.quiz-form {
    margin: 150px auto;
    width: 350px;  
    box-shadow: 0 4px 15px rgb(27, 170, 163); 
}

/* Inputs, dropdowns, buttons */
.quiz-form input,
.quiz-form select,
.quiz-form button {
    width: 300px;
    height: 45px;
    margin: 10px;
    border-radius: 25px;
    padding-left: 10px;         
    font-size: 16px;
}

/* Navbar */
header{
    background:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 110px;
}

.logo{
    font-size:32px;
    font-weight:bold;
    color:purple;
}

nav a:hover{
    color:purple;
}


.contact-section{
    display:flex;
    justify-content:space-between;
    padding:70px 110px;
    min-height:75vh;
}

.left-text{
    width:40%;
}

.left-text h2{
    font-size:38px;
    margin-bottom:30px;
}

.left-text p{
    font-size:22px;
    line-height:1.6;
    color:#c1734f;
}



/* Dashboard */
.dashboard-container{
    display: flex;
    flex-direction: column;
    align-items:center;
    padding:30px;
    margin-left: 50px;  
}

iframe {
    width: 100%;
    max-width: 1100px;
    height: 700px;
    border: none;
}

/* contact */
.form-container{
    width:550px;
    padding:30px;
    background:white;
    border-radius:20px;
    box-shadow:0 4px 15px rgb(27,170,163);
}

/* Inputs, dropdowns, buttons */
.form-container input,
.form-container select,
.form-container button {
    height: 45px;
    margin: 10px;
    border-radius: 30px;
    font-size: 16px;
}
