@font-face {
    font-family: 'Outfit';
    src: url('fonts/Outfit-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

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

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

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

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

:root{
    --darkblue: #0B1825;
    --darkblue2: #101F2F;
    --darkblue3: #15293E;
    --blue: rgb(53, 51, 205);
    --outfit: 'Outfit', serif;
}

body, html{
    background-color: var(--darkblue) !important;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: var(--outfit) !important;
}

.section{
    padding-block: 4rem;
}

.white-btn{
    border: 1px solid white;
    background-color: transparent;
    border-radius: 12px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    font-size: clamp(12px, 1vw, 18px);
    color: white;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    width: fit-content;
}

.white-btn:hover{
    background-color: white;
    color: black;
    border: 1px solid transparent;
}

.gradient-border{
    border: 1px solid transparent;
    border-radius: 12px;
    background-image: linear-gradient(var(--darkblue), var(--darkblue)), linear-gradient(to bottom, var(--darkblue), white);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.custom-hr{
    border-top: 1px solid #DDDDDD;
    opacity: 1;
}

.custom-circle{
    background: radial-gradient(
        circle, 
        rgba(53, 51, 205, 0.6), 
        rgba(53, 51, 205, 0.2), 
        rgba(53, 51, 205, 0)
    );
        filter: blur(125px);
        width: 300px;
        height: 300px;
        position: absolute;
}