*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body{
    width: 100%;
    height: 100vh;
    background-color: #6a5151;
    display: flex;
    align-items: center;
    justify-content: center     ;
}
.fileUpload{
    width: 169px;
    height: 129px;
    border: 1px solid white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: rgba(33, 110, 85, 0.702);
    font-weight: 700;
    cursor: pointer;
    -webkit-user-select:none ;
    user-select: none;
    padding-top: 20px;
    padding-bottom: 20px;
}
.fileUpload:hover{
    background-color: steelblue;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
#bottom{
    border: 2px solid white;
    padding: 12px 29px;
    border-radius: 30px;
    
}
#top{
    font-size: 4rem;
}