@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

#vi-mi {
  display: flex;
  justify-content: center;
  margin-top: 10%;
  background-color: #f1f1f8;
}
.container {
  width: 65%;

  background-color: white;
  position: relative;
  min-width: 65%;
  background: linear-gradient(180deg, #CF1414, #690A0A);
}
.corner {
  position: absolute;
  width: 35px;
  height: 35px;
}
:root {
  --cornerred: rgb(197, 28, 28);  
}
.corner.tl {
  top: -25px;
  left: -25px;
  border-top: 12px  solid var(--cornerred);
  border-left: 12px solid var(--cornerred);
}

.corner.tr {
  top: -25px;
  right: -25px;
  border-top: 12px  solid var(--cornerred);

  border-right: 12px solid var(--cornerred);
}

.corner.bl {
  bottom: -25px;
  left: -25px;
  border-bottom: 12px solid var(--cornerred);
  border-left: 12px solid var(--cornerred);
}

.corner.br {
  bottom: -25px;
  right: -25px;
  border-bottom: 12px solid var(--cornerred);
  border-right: 12px solid var(--cornerred);
}

.section {
  text-align: center;
  margin: 20px 0;
  color: black;
}
.section h2 {
  margin-top: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: white;
  font-size: 22px;
}
.section .line {
  height: 2px;
  background-color: #ccc;
  margin: 10px auto;
  width: 60%;
  color: white;
  border-radius: 100%;
}
.section p {
  margin: 0 10px 20px 10px;
  color: white;
  text-align: left;
  font-family: "Poppins", sans-serif; 
  font-weight: bolder;
  font-size: 14px;
}
@media(max-width:550px){
  .container{
    width: 40%;
  }
}
@media(max-width:435px){
  .container{
    width: 80% !important
  }
  #vi-mi {
    display: flex;
    justify-content: center;
    margin-top: 10%;
    background-color: #f1f1f8;
  }
  .section p {
    margin: 0 10px 20px 10px;
    color: white;
    text-align: left;
    font-family: "Poppins", sans-serif; 
    font-weight: bolder;
    font-size: 12px;
  }
}