:root {
    --primary-color: #48769A;
    --secondary-color: #fff;
    --active-color: #ff0;
    
}

*(
box-sizing: border-box;
padding: 10px;
border: 10px
color: var(--primary-color);
)

container {
    display: flex
    align-content: center;
    margin: auto; 
    width: 100%;
    overflow: auto;
    
}


body {
    font-family: Verdana, Geneva, sans-serif;
    color: darkslategray;
    line-height: 1.5;
}
p {
    color: black;
    font-size: 1em;
}

h1 {
    color: var(--primary-color);
    font-size: 3em;
    
}

h3 {
    color:darkgray;
    font-size: 1.4em;
    font-weight: 200;
}


.header {
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 50px;
    padding: 30px 30px 50px 30px;
}
.nonav {
    height: 2px;
    width: 100%;
    background-color: var(--primary-color);
    padding: 30px 0 0 30px;
}
.response {
    display: flex;
    flex-direction: column;
    text-align: center;
    line-height: 1.2em;
    height: 50px;
    padding: 10px 30px 50px 30px;

}
.redirect {
    height: 25px;
    width: 200px;
    display: inline-block;
    align-items: center;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    
}
.bottom {
    height: 3px;
    width: 100%;
    background-color: darkgrey;
    margin-top: 30px;
    padding: 20px 30px 30px 30px;
}

    