@font-face {
    font-family: "Rubik";
    src: url("/fonts/Rubik-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Rubik";
    src: url("/fonts/Rubik-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Rubik";
    src: url("/fonts/Rubik-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Rubik";
    src: url("/fonts/Rubik-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root{
    --rubik: "Rubik", sans-serif;

    --black : #1E1E1E;
    --red : #FF6462;
    --softred: rgba(255, 100, 98, 0.1);
}

body,html{
    font-family: var(--rubik) !important;
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #f0f0f0;
    user-select: none;
    scroll-behavior: smooth;
}

#content{
    flex: 1;
}

.red-btn{
    background-color: var(--red);
    color: white;
    padding: 8px 24px;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.red-btn:hover{
    background-color: white;
    color: var(--red);
    border: 1px solid var(--red);
}

