* {
    box-sizing: border-box;
}

html, body, main {
    scrollbar-gutter: stable both-edges;
}

html, body {
    height: 100%;
    margin: 0;
    padding-top: 5px;
    padding-bottom: 5px;
}

body {
    font-family: 'Roboto Condensed', serif;
    background-color: #F0EFF0;
    color: #000000;
    display: flex;
    flex-direction: column;
}

header {
    background: #74007A;
    color: white;
    padding: 10px 0;
    text-align: center;
    border-radius: 5px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

main {
  	flex: 1;
    padding: 20px;
    background-color: #FAF0F9;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-image: url("ayaya.jpg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
}

footer {
    text-align: center;
    padding: 10px 0;
    background: #74007A;
    color: white;
    border-radius: 5px;
}

.link {
    color: white;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}