35 lines
681 B
CSS
35 lines
681 B
CSS
.contact-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding: 10vmin;
|
|
}
|
|
|
|
.contact-container h1 {
|
|
color: #222;
|
|
font-size: 10vmin;
|
|
font-family: 'Moonstone History';
|
|
font-weight: 10;
|
|
margin: 0;
|
|
margin-bottom: 40px;
|
|
text-align: center;
|
|
}
|
|
|
|
.contact-container a {
|
|
background-color: #222;
|
|
padding: 10px 25px;
|
|
border-radius: 25px;
|
|
color: #F8FAFC;
|
|
text-decoration: none;
|
|
font-family: 'Mona-Sans';
|
|
font-weight: 700;
|
|
font-size: 20px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.contact-container svg {
|
|
margin-left: 10px;
|
|
} |