html, body {
    padding: 0px;
    margin: 0px;
    background-color: whitesmoke;
    height: 100%;
}

.container {
    display: grid;
    grid-template-rows: auto 1fr;
    width: 100%;
    height: 100%;
    background-color: whitesmoke;
    padding: 0px;
    margin: 0px;
}

.ribbon {
    top: 0;
    display: flex;
    background-color: rgb(174, 1, 0);
    align-items: center;
    height: 75px;
    width: 100%;
    position: relative;
}

.ribbon img {
    height: 50px;
    width: auto;
    border-radius: 10px;
    margin-left: 15px;
    margin-right: 15px;
    opacity: 100%;
}

.ribbon p {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 40px;
    font-weight: bold;
    color: rgba(248, 231, 0);
    margin-right: 15px;
}

.ribbon a {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: white;
    padding-left: 20px;
    padding-right: 20px;
    text-decoration: none;
    align-content: center;
    height: 100%
}

.ribbon a:hover {
    color: rgba(248, 231, 0);
}

.page {
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.introbox {
    align-items: center;
    border: 1px solid rgba(100, 100, 100, 0.25);
    border-radius: 10px;
    padding: 10px;
    width: 90%;
    align-items: center;
}

.intro {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-align: center;
    font-size: 100px;
    font-weight: bold;
}

.page p {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

