@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
/*  MAIN.CSS  */
*{
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
}

input[type=text] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=file] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
  
input[type=submit] {
    width: 100%;
    background-color: #ba232d;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
  
input[type=submit]:hover {
    background-color: #c91320;  
}

.logo {
    width: 250px;
    height: auto;
    position: fixed;
    top: 5%;
    left: 43%;
}

.heading {
    position: fixed;
    top: 20%;
    font-size: 44px;
    left: 33.75%;
    margin: 25px;
}

main {
    position: fixed;
    top: 40%;
    left: 27.75%;
    width: 750px;
}