.cutive-mono-regular {
  font-family: "Cutive Mono", monospace;
}
html {
    font-family: "Cutive Mono";
    font-weight: 1000;
}
body{
background: #000000;
background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(91, 206, 250, 1) 1%, rgba(91, 206, 250, 1) 20%, rgba(245, 169, 184, 1) 20%, rgba(245, 169, 184, 1) 40%, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 1) 60%, rgba(245, 169, 184, 1) 60%, rgba(245, 169, 184, 1) 80%, rgba(91, 206, 250, 1) 80%, rgba(91, 206, 250, 1) 99%, rgba(0, 0, 0, 1) 100%);
}
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0px 10%;
    background-color: whitesmoke;
    border-radius: 20px;
    outline: 3px solid black;
}
.site-header {
    margin-bottom: 3px;
}
.site-header-paragraph {
    margin-top: 2px;
}
.menu {
    background-color: whitesmoke;
    margin: 0px 7%;
    border-radius: 5px;
    outline: 3px solid black;
}
.menu-items {
    display: flex;
    justify-content: space-between;
    padding: 5px 10%;
    list-style-type: none;
}
.nav-item {
    color: black;
    text-decoration: none;
    padding:0px 10px;
}
.nav-1 {
    background-color: #D62800;
    border-radius: 5px;
    outline: 2px solid black;    
}
.nav-2 {
    background-color: #FF9B56;
    border-radius: 5px;
    outline: 2px solid black;
}
.nav-3 {
    background-color: #D462A6;
    border-radius: 5px;
    outline: 2px solid black;
}
.nav-4 {
    background-color: #A40062;
    border-radius: 5px;
    outline: 2px solid black;
}
article {
    display: flex;
    flex-direction: column;
    margin: 0px 5%;
    padding-bottom: 3%;
    background-color: whitesmoke;
    border-radius: 5px;
    outline: 3px solid black;
}
.article-text {
    margin: 5px 2%;
}
h2 {
    padding-left: 5%;
}
p1 {
    margin: 0px 1.5%;
}
img {
    max-width: 100%;
    max-height: 100%;
}
.media-title {
    grid-area: title;
}
.media-poster {
    max-height: 580px;
    width: auto;
    grid-area: poster;
    outline: 3px solid black;
    border-radius: 5%;
}
.media-text {
    grid-area: text;
    padding-top: 5%;
    padding-left: 5%;
}
.media-container {
    background-color: whitesmoke;
    padding: 0% 3%;
    margin-bottom: 15px;
    display: grid;
    height: 670px;
    grid-template-areas: 
    "title title"
    "poster text";
}
.gif-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.gifs {
    max-width: 410px;
    height: auto;
    flex: 1 1 auto;
    object-fit: c;
    outline: 3px solid black;
    border-radius: 5%;
    margin: 7px;
}
footer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    height: 46px;
    align-content: auto;
    background-color: whitesmoke;
    margin: 15px 7%;
    border-radius: 5px;
    outline: 3px solid black;
    position: auto;
    width: 86%;
    bottom: 3%;
}
.footer-content {
    margin: 0px 1.5%;    
}
.web-buttons-container {
    margin-top: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}