25 lines
322 B
CSS
25 lines
322 B
CSS
.discord {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
width: unset;
|
|
padding: 3rem;
|
|
max-width: 90%;
|
|
}
|
|
|
|
.discord button {
|
|
width: 100%;
|
|
max-width: 40rem;
|
|
}
|
|
|
|
.title {
|
|
font-size: 2.5rem;
|
|
margin: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.description {
|
|
font-size: 1.5rem;
|
|
max-width: 40rem;
|
|
text-align: justify;
|
|
}
|