* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  position: relative;
  width: 100%;
  height: 100%;
}

.background {
  position: relative;
  width: 1080px;
  height: 1920px;
  background: linear-gradient(
    11deg, 
    rgba(222, 36, 27, 1) 0%, 
    rgba(222, 36, 27, 1) 52%,
    rgba(245, 165, 161, 0.2) 100%)
}

.logo{
  position: absolute;
  background: url(../assets/logo.png);
  width: 275px;
  height: 263px;
  object-fit: cover;
}

.image-section {
  position: absolute;
  width: 100%;
  height: 850px;
  overflow: hidden;
  z-index: -1;
  background-size: cover;
  background-position: center;
}

.circle-section {
  position: absolute;
  top: 641px;
  width: 100%;
  height: 1247px;
  overflow: hidden;
  background: linear-gradient(
    to top, 
    rgba(222, 36, 27, 1) 0%, 
    rgba(222, 36, 27, 1) 80%,
    rgba(222, 36, 27, 0) 100%)
}

.circle {
  position: absolute;
  top: 105px;
  width: 100%;
  height: 1300px;
}

.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle h1{
  display: -webkit-box;
  position: absolute;
  left: 205px;
  top: 645px;
  width: 676px;
  font-family: 'Nunito', sans-serif;
  text-align: center;
  color: #DE241B;
  font-size: 77px;
  text-shadow: 3px 0px #DE241B;
  margin-top: 50px;
  line-height: 1;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.circle p p{
  position: absolute;
  left: 100px;
  top: 228px;
  width: 867px;
  height: 407px;
  color: #000000;
  font-size: 58px;
  text-align: center;
  text-shadow: 1px 0px black;
}

.circle .line {
  position: absolute;
  left: 315px;
  top: calc(228px + 419px);
  width: 444px;
  height: 3px;
  background-color: #DE241B;
}

.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1080px;
  height: 32px;
  display: flex;
  z-index: 3;
}

.footer-part {
  flex: 1;
  height: 100%;
}

.footer-part.orange {
  background-color: #ED6F15;
}

.footer-part.green {
  background-color: #4FA134;
}

.footer-part.white {
  background-color: #FFFFFF;
}
