42 lines
658 B
CSS
42 lines
658 B
CSS
men-homepage {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
font-size: 16px;
|
|
position: relative;
|
|
height: 100%;
|
|
color: white;
|
|
}
|
|
|
|
men-homepage social-links {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
padding: 1em;
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
.men-homepage__container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100%;
|
|
width: 100%;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.men-homepage__container h1 {
|
|
text-shadow: 3px 3px var(--black);
|
|
font-size: min(128px, 16vw);
|
|
margin: 0;
|
|
}
|
|
|
|
.men-homepage__links {
|
|
margin-top: 1.5em;
|
|
display: flex;
|
|
}
|
|
|
|
.men-homepage__links > men-link + men-link {
|
|
margin-left: 2em;
|
|
}
|