@import url('https://fonts.googleapis.com/css2?family=Atma:wght@300;400;500;600;700&family=Birthstone&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    font-family: "Birthstone", cursive;
    font-size: 4rem;
    margin-top: 0;
}

p {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
}

img {
    width: 100%;
    max-width: 400px;
}

a {
    color: #8bae66;
    text-decoration: none;
    font-weight: normal;
    border-bottom: 1px solid transparent;
    transition: border-bottom .12s ease-in-out;
}

a:hover {
    border-bottom-color: #8bae66;
}