* {
    box-sizing: border-box;
}

.row::after {
    content: "";
    clear: both;
    display: block;
}

body {
    background: #d6d6c2;
}

h1 {
    color: #000;
    text-align: center;
    font-family: 'Seymour One', sans-serif;
}

h2 {
    color: #000;
    text-align: left;
    font-family: 'Seymour One', sans-serif;
}

h3 {
    color: #000;
    text-align: center;
    font-family: 'Seymour One', sans-serif;
}

h4 {
    color: #000;
    text-align: left;
    font-family: 'Seymour One', sans-serif;
}

[class*="col-"] {
    float: left;
    padding: 15px;
}

.header {
    background-color: grey;
    text-align: center;
    color: #000;
    padding: 15px;
    border-radius: 20px;
    margin: 6px;
}

.header:hover {
    background-color: #d6d6c2;
}

.menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;;
}
  
.menu li {
    padding: 8px;
    margin-bottom: 7px;
    background-color: grey;
    color: #451772;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    text-align: center;
    border-radius: 10px;
}
  
.menu li:hover {
    background-color: #d6d6c2;
}
  
.nav {
    background-color: grey;
    padding: 15px;
    color: #451772;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    border-radius: 10px;
}

.article {
    background-color: grey;
    padding: 15px;
    color: #451772;
    text-align: left;
    font-size: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    border-radius: 10px;
}

.article:hover {
    background-color: #d6d6c2;
}

.nav:hover {
    background-color: #d6d6c2;
}

.footer {
    background-color: grey;
    text-align: center;
    color: #000;
    padding: 15px;
    border-radius: 20px;
    margin: 6px;
}

.footer:hover {
    background-color: #d6d6c2;
}

.container {
    background-color: #8d9093;
    border-radius: 20px;
    border: 3px solid #000;
}

.link_button {
    padding: 5px;
    border: auto;
    border-radius: 5px;
    background-color: grey;
    color: #451772;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
}

.link_button:hover {
    background-color: #8d9093;
}

.link_button_end {
    text-align: end;
}

.picture_border {
    border: 2px solid #000;
    border-radius: 10px;
}

.video_border {
    border: 2px solid #000;
    border-radius: 10px;
}

[class*="col-"] {
    width: 100%;
}
  
@media only screen and (min-width: 600px) {
    .col-s-03 {width: 25%;}
    .col-s-09 {width: 75%;}
    .col-s-12 {width: 100%;}
}

@media only screen and (min-width: 768px) {
    .col-03 {width: 25%;}
    .col-06 {width: 50%;}
    .col-09 {width: 75%;}
}

@import url('https://fonts.googleapis.com/css2?family=Seymour+One&display=swap')