html {
height: 100%;
}
body {
font-family: museo-sans, sans-serif;
font-size: 36px;
color: #252528;
background-color: white;
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
}
section {
display: flex;
flex-direction: column;
align-items: center;
}
a:link {
color: black;
font-weight: bold;
}
a:visited {
color: #252528;
}
.bot-entry {
border: 1px solid #666;
border-radius: 0.5em;
padding: 1em;
width: 60%;
min-width: 320px;
margin-bottom: 1em;
}
.bot-entry .name {
font-size: 2em;
margin-bottom: 1em;
}
.bot-entry img {
max-width: 90%;
max-height: 800px;
}
.bot-entry .description {
font-style: italic;
margin-top: 1em;
margin-bottom: 1em;
}
.bot-entry .links {
width: 100%;
display: flex;
align-items: center;
}
.bot-entry .links a {
flex-grow: 1;
text-align: center;
}
footer {
padding: 2em;
}
ul {
list-style-type: none;
margin-left: 0;
display: flex;
flex-direction: column;
align-items: center;
}
@media all and (max-width: 414px) {
body {
font-size: 12px;
}
.name {
font-size: 1em;
}
.project {
max-width: 320px;
}
}