html, body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    
    background-color: rgb(230, 230, 230);
    color: rgb(24, 24, 24);
    width: 100%;
    height: 100%;
    margin: 0;
}

#main-container {
    width: 100%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

a {
    color: rgb(47, 93, 179);
}

#main {
    background-color: rgb(248, 248, 248);
    border-radius: 30px;
    border: 1px dashed rgb(218, 218, 218);
    padding: 50px;
    width: 50vw;
    font-size: 1.2rem;
    max-width: 400px;
}

strong {
    font-style: italic;
    color: rgb(105, 105, 105);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

hr {
    border: 1px solid rgb(218, 218, 218);
    margin-bottom: 18px;
}

#main p {
    font-family: Georgia;
    margin-top: 0;
}

#contact {
    color: rgb(134, 134, 134);
    line-height: 25px;
    margin: 0;
    text-align: center;
}

@media (max-width: 500px) {
    html, body {
        background-color: rgb(248, 248, 248);
    }

    #main-container {
        width: 100%;
        height: 100%;
    }

    #main {
        background-color: transparent;
        padding-bottom: 0;
        padding-top: 0;
        border-radius: 0;
        border: none;
        width: 100%;
        height: 90%;
        font-size: 1.3rem;
    }

    #contact {
        line-height: 60px;
    }

    #contact a {
        border-radius: 10px;
        border: 1px solid rgb(226, 226, 226);
        padding: 15px;
        margin: 10px;
        margin-left: 5px;
        text-decoration: none;
    }
}