body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
}

header {
    background-color: #2196F3;
    color: white;
    text-align: center;
    padding: 1rem 0;
    border-radius: 20px;
}

main {
    padding: 2rem;
}

.cr-info {
    background-color: #121212;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    color: #ffffff;
}

.cr-info h2 {
    margin-top: 0;
}

.contact {
    margin-top: 1.5rem;
    margin-bottom: 50px;
}

.contact h3 {
    margin-bottom: 0.5rem;
}

.contact ul {
    list-style-type: none;
    padding: 0;
}

.contact li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.contact .icon {
    margin-right: 0.5rem;
}

.contact a {
    color: #2196F3;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

img {
    height: 30px;
    width: 30px;
}

.button-64 {
    align-items: center;
    background-image: linear-gradient(144deg,#AF40FF, #5B42F3 50%,#00DDEB);
    border: 0;
    border-radius: 8px;
    box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
    box-sizing: border-box;
    color: #FFFFFF;
    display: flex;
    font-family: Phantomsans, sans-serif;
    font-size: 20px;
    justify-content: center;
    line-height: 1em;
    max-width: 100%;
    min-width: 140px;
    padding: 3px;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    cursor: pointer;
}

.button-64:active,.button-64:hover {
    outline: 0;
}

.button-64 span {
    background-color: rgb(5, 6, 45);
    padding: 16px 24px;
    border-radius: 6px;
    width: 100%;
    height: 100%;
    transition: 300ms;
}

.button-64:hover span {
    background: none;
}

@media (min-width: 768px) {
    .button-64 {
      font-size: 24px;
      min-width: 196px;
    }
}

.button-85 {
    padding: 0.6em 2em;
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    text-decoration: none;
    margin-left: 80px;
}

.button-85:before {
    content: "";
    background: linear-gradient(
      45deg,
      #ff0000,
      #ff7300,
      #fffb00,
      #48ff00,
      #00ffd5,
      #002bff,
      #7a00ff,
      #ff00c8,
      #ff0000
    );
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing-button-85 20s linear infinite;
    transition: opacity 0.3s ease-in-out;
    border-radius: 10px;
}

@keyframes glowing-button-85 {
    0% {
      background-position: 0 0;
    }
    50% {
      background-position: 400% 0;
    }
    100% {
      background-position: 0 0;
    }
}

.button-85:after {
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #222;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@media (max-width: 600px) {
    header {
        padding: 0.5rem 0;
        border-radius: 10px;
    }
    main {
        padding: 1rem;
    }
    .cr-info {
        padding: 1rem;
        border-radius: 5px;
    }
    .button-85 {
        margin-left: 0;
        padding: 0.5em 1.5em;
    }
}