@import url("https://fonts.cdnfonts.com/css/inter");

body {
    font-family: 'Inter', sans-serif;
}

a {
    background-color: #0061ff;
    font-weight: bold;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 5px;
}

img {
    width: 10em;
    height: 10em;
}


.btn {
    padding: 12px 25px;
    font-size: 1em;
    font-weight: 800;
    cursor: pointer;
    background-color: #0061ff;
    border-radius: 5px;
    width: auto;
    min-width: 75%;
    transition: 0.5s ease;
}

.feature .btn {
    background-color: var(--bg);
}

.btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}