* {
    margin: 0;
    padding: 0;
}
html, body {
    font-family: 'Tahoma', 'Verdana', 'Helvetica', 'Rebellion Knight', 'Roboto', sans-serif;
    background-color: black;
    background-image: url('https://4kwallpapers.com/images/wallpapers/porsche-911-gt3-r-2560x2560-11539.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

h1 {
    font-size: 3em;
    text-align: center;
    margin: 20px;
}

body {
    display: flex;
    flex-direction: column;
    /* overflow: hidden; */

    align-items: center;
    color: black;
    align-items: center;
}

#container {
    margin: 4vh 20vw;
    border-radius: 10px;
    background-color: rgb(243, 243, 243);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    min-height: 80vh;
    font-size: 20px;
    text-align: center;

    -webkit-box-shadow: 0px 12px 30px 5px rgba(118,174,196,1);
    -moz-box-shadow: 0px 12px 30px 5px rgba(118,174,196,1);
    box-shadow: 0px 12px 30px 5px rgba(118,174,196,1);;
}

#text{margin: 10px;}

#image {
    display: block;
    margin: 10px auto;
    max-width: 80%;
    border-radius: 10px;
}

#file {
    display: flex;
    flex-direction: column;
}

input{
    border-radius: 5px;
    padding: 3px;
    width: 60%;
    font-size: large;
}
input[type="file"] {
    border-radius: 5px;
    text-align: center;
    transition: all 0.5s;
    cursor: pointer;
}
input::file-selector-button {
    padding: 0.5em;
    cursor: pointer;
    width: 60%;
    border: thin solid grey;
    border-radius: 3px;
  }

button {
    margin: 10x;
    padding: 3px 6px;
    width: 20%;
    border-radius: 5px;
    border-width: 1.5px;
    background-color: rgb(136, 163, 179);
    color: white;
    cursor: pointer;
    font-size: large;
    text-align: center;
    transition: all 0.5s;
}

button:hover{
    background-color: #314e57;
}

#result {
    margin: 20px;
    border-radius: 10px;
}

@media screen and (max-width: 1000px) {
    #container {
        margin: 5vh 2vw;
        width: 96vw;
    }
    #container > * {
        font-size: 150%;
    }
    input {
        font-size: xx-large;
    }
    input::file-selector-button {
        font-size: x-large;
      }
    button {
        margin: 10px;
        font-size: xx-large;
    }
    img {
        width: 100%;
        /* max-width: 100%; */
    }

}