:root {
    --deepBlue: #050947;
    --deepBlue-50: #F3F3F6;
    --brightBlue: #0A66FF;
    --red: #FD4200;
    --red-200: #FFD9CC;
}

body {
    font-family: Roobert;
    color: var(--deepBlue);
    margin: 0;
    height: calc(100vh - 75px);
    position: relative;
    font-family: Roobert;
    font-size: 18px;
    overflow: hidden;
    background-color: var(--deepBlue-50);

    @media only screen and (max-width: 720px) {
        font-size: 14px;
    }
}

body>img {
    opacity: 0.04;
    position: absolute;
    z-index: -1;
}

header {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    width: 100%;
    height: 75px;
    position: fixed;
    z-index: 10;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header>div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 30px;
}

#indicator {
    position: relative;
}

#indicator__outter {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    height: 16px;
    width: 16px;
    background-color: var(--red-200);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

#indicator__inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 8px;
    height: 8px;
    background-color: var(--red);
}

main {
    padding-top: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    min-height: 100%;
    overflow-y: hidden;
}

main>div {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    min-width: 300px;
    max-width: min(1200px, 90%);
    gap: 15px;

    @media only screen and (max-width: 720px) {
        flex-direction: column;
        padding-inline: 10px;
        width: 90%;
        margin-inline: auto;
    }
}

main>div>div {
    width: 60%;

    @media only screen and (max-width: 720px) {
        width: 100%;
    }
}

main>div>img {
    height: 280px;

    @media only screen and (max-width: 720px) {
        display: none;
    }
}

#mailto_label {
    display: flex;
    align-items: center;
    gap: 6px;
    position: absolute;
    justify-content: center;
    top: 0px;
    right: 0px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    border-radius: 0px 20px 0px 20px;
    background-color: var(--brightBlue);
    padding: 10px 18px;

    @media only screen and (max-width: 720px) {
        position: relative;
        order: 2;
        border-radius: 16px;
        width: 100%;
        padding: 10px 0px;
    }
}

h1 {
    font-size: 56px;
    margin: 0;

    @media only screen and (max-width: 720px) {
        font-size: 28px;
    }
}

h3 {
    font-size: 24px;
    margin: 0;

    @media only screen and (max-width: 720px) {
        font-size: 18px;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

@font-face {
    font-family: Roobert;
    font-weight: 400;
    src: url("fonts/Roobert-Regular.ttf");
}

@font-face {
    font-family: Roobert;
    font-weight: 700;
    src: url("fonts/Roobert-Bold.ttf");
}

@font-face {
    font-family: RoobertMono;
    font-weight: 400;
    src: url("fonts/RoobertMono-Regular.ttf");
}