/* style.css */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color:#fbfbf9;
}

.container {
    display: flex; 
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
}

.logo {
    width: 550px;
    height: 550px;
    user-select: none;
    pointer-events: none;
    max-width: 100%; 
    height: auto; 
}

.text {
    font-size: 32px;
    font-weight: bold;
    color: #c52c0c;
    margin-top: 20px;
    text-align: center;
}

.text .text-site {
    border: 2px solid #ffc800;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 10vh;
}

.copy {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    text-align: center;
}

@media (max-width: 600px) { 
  .logo {
    width: 80%; 
  }

  .text {
    font-size: 24px;
  }
}
