@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
}

h1 {
    font-weight: bold;
    letter-spacing: 0.2rem;
    text-shadow: 0 0 5px;
}

h3 {
    font-style: italic;
}

body {
    background-color: rgb(13, 61, 100);
    color: aliceblue;
    height: 100vh;
}

header {
    padding: 1rem;
    border-bottom: 1px solid aliceblue;
    width: 100%;
    text-align: center;
}

main {
    width: 90%;
    border-radius: 1rem;
    margin: 1rem auto;
    padding: 1rem;
    background-color: rgb(20, 70, 110);
}

main p {
    margin-bottom: 0.75rem;
}

footer {
    position: fixed;
    bottom: 0;
    padding: 1rem;
    border-top: 1px solid aliceblue;
    width: 100%;
}

footer p {
    text-align: center;
    font-size: 0.75rem;
}

a:first-of-type {
    border-right:  2px solid antiquewhite;
    padding-right: 1rem;
}

a:last-of-type {
    padding-left: 1rem;
}

a, a:visited {
    color:antiquewhite;
    text-decoration: none;
}

a:hover {
    color: #c8bcac;
}

div {
    margin-bottom: 2rem;
}

div:last-of-type {
    margin-bottom: 0;
}

#joke {
    color: antiquewhite;
    font-style: italic;
}

button {
    border: 2px solid aliceblue;
    background-color: rgb(20, 70, 110);
    color: aliceblue;
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    box-shadow: 0 0 10px antiquewhite;
    text-shadow: 0 0 5px antiquewhite;;
}

button:active {
    transform: scale(0.95);
}