/* CSS Styles for the webpage holder */

/* Universal Styles */

* {
    box-sizing: border-box;
}
body, html {
    font-family: sans-serif;
    font-size: 20px;
    margin: 0;
    color: #FFF;
    background-color: #000;
    height: 100%;
    text-align: center;
    font-family: sans-serif;
}

/* Background Section */

.background {
    width: auto;
    height: 100vh;
}

/* Title Section */

.title {
    border: 3px solid #FFF;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1em;
    background-color: rgba(0, 0, 0, 0.2);
}

/* Footer Section */

.footer {
    padding-bottom: 2vh;
}