/* home_style.css */
html, body {
    max-width: 100dvw;
    height: 100dvh;
    margin: 0;
    box-sizing: border-box;
    background: #b4c5e4;
}

html {
    font-size: 10px;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    min-height: 100dvh;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    grid-template-columns: 100%;
}

main {
    padding-top: 13dvh;
    text-align: center;
}

header {
    text-align: left;
    padding-left: 3.5rem;
}

footer {
    margin: 5px;
    text-align: center;
    margin-top: auto;
}


a:link, a:visited {
    background-color: #090c9b;
    color: white;
    padding: 14px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

a:hover, a:active {
    background-color: #0041c2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 3.0rem;
}

h3 {
    font-size: 2.3rem;
}

p {
    font-size: 1.8rem;
}

a {
    text-decoration: none;
    font-size: 2.3rem;
    color: black;
    border-radius: 15px;
}
