:root {
    --primary-colour: #ff6b61;
    --accent-colour: #66ff61;
    --background-colour: #252525;
    --default-fonts: "OpenSans", sans-serif;
}

html, body {
    width: 100%;
    height: 100%;
    background-color: var(--background-colour, #000000);
}

div.center-div {
    display: flex;
    align-items: center;
    justify-content: center;
}

div#title {
    height: 25vh;
}
  
div#title > p {
    font-size: xx-large;
    font-family: var(--default-fonts);
    font-weight: bolder;
    color: #e2e2e2;
}

div.back-button {
    position: absolute;
    top: 6;
    left: 12;

}

div.back-button > button {
    position: sticky;
    width: fit-content;
    height: 40px;
    margin-bottom: 30px;
    padding-left: 10px;
    padding-right: 10px;

    background-color: var(--primary-colour, #FFFFFF);
    color: black;

    font-size: larger;

    border: none;

    border-radius: 12.5px;
    
    transition: all 0.3s ease-in-out;
}

div.back-button >button:hover {
    background-color: var(--accent-colour, #FFFFFF);
    color: black;
  }