body {
    font: 20px Helvetica, Arial;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: #f8f9fa;
}

input:focus::placeholder {
  color: transparent;
}

.preferably-square {
    width: 100%;
    aspect-ratio: auto 1 / 1;

}

::placeholder {
  color: #000000;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
 color: #000000;
}

:-ms-input-placeholder { /* Microsoft Edge */
 color: #000000;
}

@font-face {
    font-family: 'Krasar';
    src: url("Krasar.woff") format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
label{
  font-family: 'Krasar';
  font-size: 18px;
}
h4{
  color: #0D55B5;
}
.card{
  background: #fff;
}
.back{
  margin-left: 2%;
  }

form{
  width: 40%;
}

.container {
    width: 30%;
    float: left;
    margin-top: 1em;
    color: #000;
    text-align: center;
    display: none;
    margin-left: 2%;
}

select {
  border:1px solid #a7a7a7;
  height:40px;
  padding: 5px;
}

input{
  padding: 9px;
}

.styled-select select {
  -moz-appearance:none; /* Firefox */
  -webkit-appearance:none; /* Safari and Chrome */
  appearance:none;
}

input, select{
  color:#000;
  background-color: #ffffff;
  display: table;
  margin-bottom: 1em;
  width: 100%;
  font-size: 16px;
  border: 1px solid #a7a7a7;
  border-radius: 5px;
  font-family: 'Krasar';
  height:40px;
  box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}

#file{
  opacity: 0;
  width: 0.1px;
  height: 0.1px;
  position: absolute;
}

.upload, button {
    color: #fff;
    background: #0D55B5;
    padding: 10px;
    border: 2px solid #0D55B5;
    border-radius: 5px;
    cursor: pointer;
}

form span{
  font-size: 12px;
}

#preview {
    font-size: 16px;
    margin-top: 0em;
}


#result {
    position: relative;
    height: 95%;
    /*border: 2px solid #ddd;*/
    border-radius: 1000px;
    box-shadow: 0 0 0 1px #0d55b5;
    background-color: #fff;
    width: 95%;
    aspect-ratio: auto 1 / 1;
}

header{
  width: 100%;
  background: #159;

  border-radius: 12px 12px 0 0 ;
}

header::after{
  content: "";
  display: flex;
  clear: both;
}

.camp{
  width: 40%;
  float: left;
  color: #fff;
}

.camp h4{
  margin: 12px auto 0 7px;
}

.camp span{
  margin-left: 8px;
}

#logo{
  width: 150px;
  height: 80px;
  float: right;
}

Now we get into the content part
.content{
  width: 80%;
}

.content::after{
  content: "";
  display: flex;
  clear: both;
}

.content img{
  float: left;
  width: 80px;
  height: 105px;
  margin-left: 7px;
  margin-top: 12px;

}

.content ul{
  width: 50%;
  float: left;
  padding-left: 15px;
}

ul li{
  list-style-type: none;
}

#down{
  font-size: 18px;
}

@media only screen and (max-width:768px) {
  .container, form{
    width: 90%;
    margin-left: 5%;
  }

 .back {
        margin-left: 0%;
    }

  #down{
    margin-right: 2em;
    margin-bottom: 2em;
  }

    #preview {
        font-size: 16px;
        margin-top: 0em;
        margin-left: 5%;
    }

}
