:root {
  font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;
}

body {
  margin: 0;
  display: flex;
  place-items: center;
  justify-content: center;
  min-width: 320px;
  min-height: 100vh;
  background-color: black;
}

a {
  display: block;
  color: #fff;
  text-decoration: none;
  outline: none;                
}

img {
  display: block;
  width: 100%;
}
.content {
    position: relative;
    z-index: 1;
    padding: 20px 50px;
    box-shadow: 0 0 20px rgba(188, 250, 188, 0.2);
    border-radius: 20px;
    background-color: rgba(0,0,0,0.75);
    max-width: 100%;
}
.content-header {
    text-align: center;
}
.content-header h1 {
    font-size: 64px;
    font-family: "Eater", serif;
    font-weight: 400;
    font-style: normal;
    background: linear-gradient(90deg, #bcfabc, #007e00, #bcfabc);
    background-size: 300% 100%; 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: glow 8s infinite ease-in;   
}


        
.box-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    font-family: "Eater", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.box-container .box {
    box-shadow: 0 0 15px rgba(188, 250, 188, 0.2);
    border-radius: 15px;
    transition: .3s ease;
    flex: auto;
}
.box-container .box a {
    font-size: 18px;
    color: #bcfabc;
    text-align: center;
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: 50px;
    min-width: 100%;
    min-width: 200px;
}

.box-container .box a i {
    color: #bcfabc;
    font-size: 48px;
    width: 50px;
}

p.op-system {
    font-family: "Story Script", sans-serif;
    font-weight: 400;
    font-style: normal;
    background: rgba(188, 250, 188, 0.2);
    color: #007e00;
    font-size: 24px;
    /* padding: 0 1.5em; */
    margin-top: 50px;
    border-radius: 5px;
    width: 100%;
}
    
p.op-system:hover {
    box-shadow: 0 0 15px rgba(188, 250, 188, 0.5);
}
    
.cities-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}
.cities-list p {
    font-family: "Story Script", sans-serif;
    font-weight: 400;
    font-style: normal;
    border-right: 3px solid #bcfabc;
    font-size: 28px;
    color: #007e00;
    padding: 0 20px;
}
.cities-list p:last-child {
    border: none;
}

.content-texting a {
    font-weight: 400;
    font-style: normal;
    color: #007e00;
    box-shadow: 0 0 15px rgba(188, 250, 188, 0.2);
    border-radius: 15px;
    transition: .3s ease;
    margin-bottom: 30px;
    text-align: center;
    padding-top: 20px;
}



@keyframes glow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 250% 20%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@media screen and (max-width: 600px) {
    .content {
        .content-header {
            h1 {
                font-size: 40px;
            }
        }
        .cities-list {
            p {
                font-size: 18px;
            }
        }
    }
}