:root {
    --orange: #ff9700;
    --purple: #8c19ff;
    --burnt-orange: #f15a29;
    --dark-purple: #241c58;
    --light-grey: #e3e3e3;
    --mid-grey: #969595;
    --dark-grey: #575656;
}

.public-sans-400 {
    font-family: "Public Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

h1, h2, p, h4 {
    font-family: "Public Sans", sans-serif;
    font-optical-sizing: auto;
}

a {
    color: white;
    text-decoration: none;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body {
    background-color: #182D7D;
    color: white;
}

.container {
    text-align: center;
    margin: auto;
    max-width: 600px;
    margin-top: 20px;
    margin-bottom: 60px;
}

iframe {
    width: 100%;
}

.ce-bar {
    align-items: center;
    background: var(--orange);
    background: linear-gradient(115deg, var(--orange) 0, var(--burnt-orange) 100%);
    bottom: 0;
    display: flex;
    gap: 10px;
    height: 50px;
    justify-content: space-between;
    left: 0;
    margin-bottom: 0;
    padding: 0 15px;
    position: fixed;
    right: 0;
    z-index: 100;
}