24 lines
249 B
CSS
24 lines
249 B
CSS
|
header{
|
||
|
font-size: 3rem;
|
||
|
margin-bottom: 2%;
|
||
|
}
|
||
|
|
||
|
main{
|
||
|
width: 60%;
|
||
|
}
|
||
|
|
||
|
section{
|
||
|
margin-top: 3rem;
|
||
|
}
|
||
|
|
||
|
.test{
|
||
|
margin: 10 0 10 0;
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
gap: 2rem;
|
||
|
}
|
||
|
|
||
|
.test a{
|
||
|
text-dectration: underline;
|
||
|
}
|