@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.container {
    padding: 1rem;
    font-family: "Inter", sans-serif;
    width: 80%;
    margin: auto;
}

a {
    color: rgb(14, 171, 255);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: rgb(20, 162, 238);
}

footer {
    text-align: center;
    color: #b4b4b45e;
    padding-top: 10px;
    padding-bottom: 0;
    margin-bottom: 0;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
        width: 90%;
        margin: auto;
    }
}