42 lines
784 B
CSS
42 lines
784 B
CSS
.B {
|
|
display: grid;
|
|
grid-template-columns: repeat(5, 1fr);
|
|
gap: 20px;
|
|
list-style: none;
|
|
line-height: 1.55;
|
|
font-size: x-large;
|
|
font-family: Georgia, 'Times New Roman', Times, serif;
|
|
background-color:bisque
|
|
}
|
|
|
|
footer {
|
|
position: absolute;
|
|
bottom: 0;
|
|
text-align: justify;
|
|
color: whitesmoke;
|
|
font-weight: bold;
|
|
}
|
|
|
|
div {
|
|
height: 50px;
|
|
width: 2000px;
|
|
font-weight: bold ;
|
|
color:aliceblue;
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
margin-top: -100px;
|
|
margin-left: -150px;
|
|
font-size: 50px;
|
|
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
|
}
|
|
|
|
body{
|
|
font-family: AeonikPro-Bold,Arial,sans-serif;
|
|
font-size: .9333333333rem;
|
|
letter-spacing: 0; ;
|
|
}
|
|
|
|
nav a:hover {
|
|
font-weight: bold;
|
|
}
|