* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-size: 10px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

::selection {
  background-color: black;
  color: #fff;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #e60313;
  direction: rtl;
  height: 100vh;
  width: 100vw;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 3rem 3rem;
  margin-top: 2rem;
  background-color: #ffff;
  border-radius: 8px;
  box-shadow: 0 0 1rem 1rem rgba(0, 0, 0, 0.064);
}

.logo {
  max-width: 70%;
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  /* border-bottom: 1px solid #000; */
}

.name {
  display: inline-block;
  width: 30rem;
  border-bottom: 1px dashed #000;
}

.data {
  text-align: right;
  margin-left: 12rem;
}

.logo-img {
  width: 100%;
}

.date {
  margin-top: 1rem;
  font-size: 3.6rem;
  padding: 1rem;
  text-align: right;
}

.num {
  margin-right: 1rem;
  color: #e60313;
  font-weight: 500;
}

/********  
MOBILE
**********/

@media (max-width: 600px) {
  html,
  body {
    font-size: 5px;
  }
  
  body{
     height:80vh; 
  }
  .container {
    margin: 0 3rem;
  }
  .logo {
    width: 60%;
    margin-top:2rem;
  }
}
