* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffff;
    color: #1e1e1e;
    display: flex;
    flex-direction: column;
    height: 100vh; 
    margin: 0; 
}

header {
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    text-align: center;
    background-color: #ffff;
    border-radius: 10px;
    margin: 122px;
}

.main_logo {
  max-width: 400px;
  margin-bottom: 40px;
  }

h1 {
    text-transform: uppercase;
    margin-bottom: 32px;
    }
    
p {
  max-width: 700px;
  margin-bottom: 32px;
  padding: 10px;
  }

.button-container {
    margin: 20px 0;
}

.button {
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin: 0 10px;
  transition: background-color 0.3s;
  cursor: pointer;
  border: solid 1px #1e1e1e;
  background-color: #1e1e1e;
  color: white;
  text-transform: uppercase;
}

.button:hover {
  color: #1e1e1e;
  background-color: white;
  border: solid 1px #1e1e1e;
  }



.green {
    background-color: #4caf50; 
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 10px;
    transition: background-color 0.3s;
    cursor: pointer; 
    text-transform: uppercase;
}

.green:hover {
    background-color: #388e3c; 
}

.thor {
    background: #9a39e9;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 10px;
    transition: background-color 0.3s;
    cursor: pointer; 
    text-transform: uppercase;
}

.thor:hover {
    background: #502a6f; 
}

.link-container {
    display: none;
    align-items: center;
    margin-top: 20px;
}

.link-content {
    background-color: #ffff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: opacity 0.5s ease-in-out; 
}

.glitch {
    font-size: 24px;
    color: #ff4081;
    position: relative;
    opacity: 0; 
    animation: glitch 1s infinite;
    margin-right: 24px;
}

@keyframes glitch {
    0% { opacity: 0; }
    10% { opacity: 1; text-shadow: 1px 1px 0 rgba(255, 0, 0, 0.7); }
    20% { text-shadow: -1px -1px 0 rgba(0, 255, 0, 0.7); }
    30% { text-shadow: 1px 1px 0 rgba(0, 0, 255, 0.7); }
    40% { text-shadow: -1px -1px 0 rgba(255, 255, 0, 0.7); }
    50% { text-shadow: 1px 1px 0 rgba(255, 0, 255, 0.7); }
    60% { text-shadow: -1px -1px 0 rgba(0, 255, 255, 0.7); }
    70% { opacity: 1; }
    100% { opacity: 0; }
}

footer {
  display: flex;
  justify-content: center; 
  }

.copy {
    padding: 40px;
    width: 100%;
    text-align: center;
}

@media (max-width: 800px) {
  header {
    margin: 10px;
    }
    
.main_logo {
  max-width: 300px;
}
    
.button-container {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
}

.green {
  margin-bottom: 20px;
}

.link-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
}

