@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Akshar:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

::-webkit-scrollbar{
    height: 0;
    width: 0;
}


body, html {
    background-color: #3b3e44;
}

main {

    max-width: 100%;
    padding: 20px;

    background-color: white;
    border-top: 10px solid #DE5047;
    border-bottom: 3px solid #68A8B0;
    box-shadow: 0 0 5px 3px #2e2e2e;

    transition: width .2s, height .2s;
    transition-timing-function: ease;
}

main h1 {
    font-family: 'Akshar', sans-serif;
    color: #68A8B0;
    font-size: 1.5em;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

main p {
    color: #2b2b2b;
    font-size: 0.9em;
    margin: 10px 0;
    text-align: justify;
}

main p a {
    color: #DE5047;
    text-decoration: none;
    font-weight: bold;
}

main a:hover {
    text-decoration: underline;
}

main img {
    display: block;
    margin: 10px auto;
    min-width: 80px;
    max-width: 450px;
}

main figcaption {
    text-align: center;
    font-size: 0.7em;
    color: #181818;
}

main figcaption a {
    display: inline;
    color: #797979;
    text-decoration: none;
    text-align: center;
}

/* LINKS */

footer p#links {
    text-align: center;
    padding: 10px;
    background-color:  #3b3e44;
}

footer p#links a {
    background-color: white;
    display: inline-block;
    border-radius: 4px;
    margin: 0 1px;
    width: 40px;
    height: 40px;
    box-sizing: border-box;
}

footer p#links img {
    height: 40px;
    border-radius: 4px;
}