:root {
    --el-grey: #161617;
    --yellow: #FACD00;
    --el-white: #f5f5f7;
}

body {
    font-family: 'Poppins', serif;
    background-color: black;
    color: #f5f5f7;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1rem 0;
    padding: 0.5rem;
    background-color: var(--el-grey);
    height: 3rem;
}

.construction__background {
    background-color: var(--el-grey);
    background-size: cover;
    border-radius: 1rem;
    text-align: center;
    margin: 0.5rem;
    padding: 2rem;
}
.construction__background {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.construction__background h1,h5,p {margin: 0;}
.construction__background h1 {color: var(--yellow)}

.construction__warning {
}

.construction__buttons {
    display: flex;
    flex-direction: column;
}
.construction__button {
    background-color: var(--el-white);
    border-radius: 1rem;
    min-width: 50vw;
    padding: 0.5rem;
    margin: 0.25rem 0;
}
.construction__button {
    color: var(--el-grey);
    text-decoration: none;
    font-weight: bolder;
    font-size: large;
}

.spacer__vert--1rem {
    margin: 1rem 0;
}

.line {
    margin: 0.5rem 0;
    width: 25rem;
    height: 3px;
    border-radius: 3px;
    background-color: var(--yellow); 
}

/* Buttons */
.construction__buttons {
    display: flex;
    flex-direction: column;
}
.construction__button {
    background-color: var(--el-white);
    border-radius: 1rem;
    min-width: 50vw;
    padding: 0.5rem;
    margin: 0.25rem 0;
}
.construction__button {
    color: var(--el-grey);
    text-decoration: none;
    font-weight: bolder;
    font-size: large;
    transition: 0.2s;
}
/* Button Hover */
.construction__button:hover {
    background-color: var(--yellow);
}

/* Responsive CSS  */

@media screen and (min-width: 1025px) {
    .construction__background {
        max-width: 50%;
        margin-left: auto;
        margin-right: auto;
    }
    .construction__button {
        min-width: 10vw;
    }
  }
