:root {
    --white: #fff;
    --black: #000;
    --pale-blue: #6bc4d4;
    --yrrah-blue: #10E3C6;
    --light-blue: #1078E3;
    --grey: #2d2b2b;
}

body {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background-color: var(--grey);
    font-family: 'Roboto', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

a {
    color: var(--white);
    text-decoration: underline;
}

.main {
    margin-top: 4.7rem;
    margin-bottom: 1rem;
}

.divider {
    width: 85vw;
    height: 0.1rem;
    background-color: var(--white);
    margin: 1vh auto;
}

.embedded-link {
    text-decoration: underline;
    color: var(--white);
}