main {
    margin-bottom: 46px;
}

main > section {
    display: flex;
    background-color: bisque;
    opacity: 0.7;
    width: auto;
    height: auto;
    margin-left: 25%;
    margin-right: 25%;
    border: 1px solid #B90B2B;
    padding: 10px;
    text-align: center;

    /*
    justify-content: center;
    background-image: url("images/background.jpg");
    background-size: auto;
    background-position: center; */
}

.First {
    border: solid 3px #B90B2B;
    border-radius: 5px;
    padding: 20px;
    margin-right: 10px;

}

.Second {
    border: solid 3px #B90B2B;
    border-radius: 5px;
    padding: 20px;
}

h2 {
    font-size: large;
    margin-bottom: 20px;
}


article p {
    margin: 10px;
}

form {
    padding: 20px;
    text-align: left;
    margin-bottom: 20px;

}


input[type=text], input[type=email] {
    width:60%;
    padding: 8px 12px;
    display: flex;
    flex-direction: row;
    border: 2px solid #B90B2B;
    border-radius: 5px;
    margin-bottom: 10px;
}



textarea {
    width: 280px;
    height:160px;
    border: 2px solid #B90B2B;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}

.button {
    display: inline;
    width: 15%;
    color: bisque;
    background-color: #B90B2B;
    cursor: pointer;
}


footer > ul > li {
    display: inline-block;
    margin-left: 40px;
    margin-right: 40px;
    font-weight: bold;
}
.dropbtn {
    background-color: #FFC300;
    font-family: 'Dosis', sans-serif;
    color: white;
    font-size: 16px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    display: inline-block;
}


.dropdown {
    position: relative;
    display: inline-block;
    float: left;
}
.dropdown:hover {
    background-color: #FF5733;
}


.dropdown-content {
    display: none;
    position: absolute;
    background-color: #C70039;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}


.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}


.dropdown-content a:hover {
    background-color: #f1f1f1
}


.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #FF5733;
}
.menyikon {
    height: 25px;
    width: 25px;
    float: left;
    margin-right: 5px;
}


