* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    font-family: Arial, sans-serif;
}

@font-face {
    font-family: 'EuroTechnic';
    font-style: normal;
    font-weight: normal;
    src: url('./fonts/EuroTechnic.woff2') format('woff');
  }

body {
    background-color: rgb(240, 239, 239);
}

.main_content {
    margin-top: 90px;
    padding: 10px;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bg_img {
    z-index: -1;
    position: fixed;
    right: -250px;
    width: 1740px;
    height: 100vh;
    background-image: url('./img/M_icon_1colorgrey_noshadow.png');
    background-size: 600px;
    background-repeat: no-repeat;
    background-position: right;
    opacity: 0.1;
}

.header {
    width: 100%;
    max-width: 800px;
    margin-top: 25px;
    border-bottom: 1px solid #cfcfcf;
    padding: 15px;
}

.header h1 {
    text-align: center;
    color: #86bd3b;
    font-size: 40px;
    font-weight: 400;
    font-family: "EuroTechnic", sans-serif;
}

.header h2 {
    text-align: center;
}

input[type=button] {
    width: 150px;
    display: block;
    margin: auto;
    padding: 10px;
    border: 1px solid #bfbfbf;
    border-radius: 5px;
}

input[type=button]:hover {
    border: 1px solid #64a70b;
}

@media only screen and (max-width:550px) {

    .bg_img {
      right: -150px;
      top: 50px;
      background-size: 400px;
    }
  
  }