body {
    background-color: #808080; /* cinza */
    color: black;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px; 
}

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

.links {
    display: flex;
    gap: 20px;
}

.links a {
   width: 40px;
    height: 40px;
    transition: transform 0.3s;
}

.links a:hover {
    transform: scale(1.25);
    opacity: 0.8;
}

