@import url('https://fonts.googleapis.com/css?family=Cabin&display=swap');
@import url('https://fonts.googleapis.com/css?family=Caveat&display=swap');

body{
    background-position: center ;
    background-repeat: no-repeat;
    font-family: 'Cabin', sans-serif;
    color: white;
    padding: 0px;
    margin: 0px;
}
.containernew {
    display: grid;
    grid-template-columns: [left] 20% [middle] auto [right] auto;
    grid-template-rows: [top] 10% [bottom] 90%;
    column-gap: 35px;
    row-gap: 15px;
    grid-template-areas:
      "top-left top-middle top-right"
      "bottom-left bottom-middle bottom-right";
}
.item-a{
    grid-area: top-left / top-left / bottom-left /bottom-left;
    margin-left:25px;

}
.item-b{
  grid-area: bottom-middle / bottom-middle / bottom-right / bottom-right;
  min-width: 0;

}
.item-c{
  grid-area: top-middle;
  min-width: 0;

}
.item-d{
  grid-area: top-right;
  min-width: 0;

}
h3{
    font-size: 38px;
    font-weight: 400;
    color:white;
}
p{
    font-size: 24px;
    color:white;
    margin-top: 50px;
}
input[type=file]{
  color:white;
}
input[type=submit]{
  margin-top: 10px;
}

a{
  margin-top:15px;
  color: #04AA6D;
  display: block;
}
/* Dropdown Button */
.dropbtn {
    display: block;
    width: 100%;
    border: none;
    background-color: #04AA6D;
    color: white;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    width: 100%;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;

  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #ddd;}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {display: block;}
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown:hover .dropbtn {background-color: #3e8e41;}