* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f7faff;
    color: #121212;
    scrollbar-width: thin;
    scrollbar-color: rgb(17,81,154) transparent;
    cursor: url(../assets/images/cursor.png), auto;
    font-family: "1", "sans-serif";
}

body, html {
    width: 100dvw;
    height: 100dvh;
}

@font-face {
    font-family: "3";
    src: url("../assets/fonts/ArialRoundedMTBold.woff");
}

@font-face {
    font-family: "1";
    src: url("../assets/fonts/Roboto-Regular.woff");
}

/*///////////////////////////////////////////////////////*/

body {display: flex; flex-direction: column;}

header {
    z-index: 9999;
    box-shadow: 0 6px rgb(17,81,154) inset, 0 -2px 1px rgb(17,81,154) inset, 0 0 1rem #00000070;
    height: 5rem;
    display: flex;
    flex-direction: row;
    flex-shrink: 0;
    column-gap: 5rem;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    h1, h1 span{
        font-weight: bold;
        font-family: "3", "sans-serif";
        cursor: url("../assets/images/pointer.png"), auto;
    }
    .search {
        width: 20rem;
        height: 2rem;
        border: none;
        outline: none;
        border-bottom: 1px solid #113a9a;
        padding: 0 8px;
        font-size: 1rem;
        transition: width 0.3s ease-in-out;
    }
    .search:hover, .search:focus {
        width: 100%;
    }
    .search::-webkit-search-cancel-button {
        appearance: none;
    }
}

main {
    overflow: auto;
    padding: 2rem;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

main a {
    text-decoration: none;
    color: #6e6e6e;
    padding: 1rem;
    outline: 2px solid #bababa;
    border-radius: 12px;
    cursor: url("../assets/images/pointer.png"), auto;
    font-size: 1rem;
    transition: outline-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

main a:hover {
    outline-color: #113a9a;
    background-color: #e6eefd;
}

footer {
    flex-shrink: 0;
    text-align: center;
    padding: 5rem, 0;
    min-height: 3rem;
    align-content: center;
}

footer, footer a, footer p {
    background-color: #11519a;
    width: 100%;
    margin: 0;
    text-decoration: none;
    color: #dbe6fa;
    font-size: 0.9rem;
}

footer a:hover {
    cursor: url(../assets/images/pointer.png), auto;
}

/*////////////////////////////////////////////////////////*/

@media only screen and (max-width:690px) {
    .search {
        width: 100% !important;
    }
}
@media only screen and (max-width:465px) {
    header {
        column-gap: 2rem;
        padding: 2rem 1.5rem;
    }
    .search {
        font-size: 14px !important;
        height: 1.5rem !important
    }
    main {
        padding: 1rem;
    }
}
