body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100svh;
  margin: 0;
  text-align: center;
}

section {
    padding: 16px 0;
}

.two-sides {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    text-align: left;
}

.numbers {
    font-weight: bold;
    font-size: 18px;
}

li {
    list-style: none;
}

.container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 16px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 16px;
}

.image {
    width: 500px;
    max-width: 100vw;
    object-fit: contain;
}

* {
  box-sizing: border-box;
}
header {
    text-align: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
    margin-bottom: 32px;
}

header h1 {
 line-height: 1;
 margin: 0;
 letter-spacing: 5px;
 font-weight: 900;
}

header p {
    line-height: 1;
    margin: 0;
}

.under-construction{
    margin-top: 8px;
   animation: Color 1s linear infinite;
   transition: 1s;
   font-weight: bold;
}

@keyframes Color{
  0%{
    color:#e41a1a;
  }
  
  50%{
    color:#555;
  }

  100%{
    color:#e41a1a;
  }
}

@media (max-width: 1040px) {
    body {
        text-align: left;
    }

    .two-sides {
        display: block;
    }
    
    .image {
        width: 100%;
        max-width: 100vw;
    }
}
