* {
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
    font-size: 24px;
    font-family: 'Noto Sans', sans-serif;
}

body {
    background-color: black;
}
    /* section for the slideshow */
#title1 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
    /* Anidex Title */
#title {
    position: absolute;
    color: white;
    font-size: 144px;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 200;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 0 0.5em;
    border-radius: 0.25em;
}

/* Slideshow container */
.slideshow-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    margin: auto;
    transform: translateY(2.5%);

}
/* images in the slide show  */
.images {
    height: 95vh;
    width: 90vw;
}
  
/* Hide the images so they aren't all stacked*/
.mySlides {
    display: none;
    height: 100%;
    text-align: center;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}
/* container for all the grey boxes */
.parent-container {
    display: flex;
    flex-direction: column;
    justify-content: space-around; 
    align-items: center;
}
/* all the grey boxes */
.items {
    display: flex;
    background-color: rgba(236, 227, 227, 0.199);
    width: 90vw;
    height: 226px;
    margin: 1em 0;
    padding: 1em;
    border: 1px solid grey;
    border-radius: 5px;
}
/* for the text in grey boxes */
.chicken {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 1em;
    color: white;
}
/* images in grey boxes */
.simages {
    width: 350px;
    height: 100%;
}
/* more information text */
.moreinfo {
    color: red;
    font-weight: bold;
}
/* title of anime in grey boxes */
.title {
    font-style: italic; 
    font-size: 29px;
}

a {
    text-decoration: none;
}

/*formating for footer*/
footer 
	{
		min-height: 3rem;
		border: 1px solid grey; 
		background-color: rgba(236, 227, 227, 0.199);
		padding: 12px;
		text-align: left;
		color: black;
        width: 99vw;
	}
	
.left
{
	padding: 0 6px 0 0;
	
}
footer a:hover {color: #ffffff;} 
footer a:visited {color: #ffffff;} 
footer a:active {color: #ffffff;}
footer a:link {color: #ffffff;} 



@media only screen and (max-width: 960px){
    .simages {
        width: 250px;
    }
}

@media only screen and (max-width: 860px) {
    .simages {
        width: 200px
    }
}
@media only screen and (max-width: 780px){
    *{
        font-size: 18px;
    }

    .title {
        font-size: 24px;
    }

    #title {
        font-size: 100px;
    }

}

@media only screen and (max-width: 575px){
    *{
        font-size: 16px;
    }

    .title {
        font-size: 20px;
    }
}

@media only screen and (max-width: 475px){
    *{
        font-size: 14px;
    }

    .title {
        font-size: 18px;
    }

    #title {
        padding: 0;
    }

    .simages {
        width: 150px;
    }

    .cc {
        width: 50px;
    }

    .email {
        font-size: 12px;
    }
}

@media only screen and (max-width: 370px){
    *{
        font-size: 12px;
    }

    .title {
        font-size: 16px;
    }

    #title {
        font-size: 90px;
    }
}

@media only screen and (max-width: 320px){
    .simages {
        width: 125px;
    }
}

@media only screen and (max-width: 300px){
    *{
        font-size: 11px
    }

    .title {
        font-size: 15px;
    }

    #title {
        font-size: 80px;
    }
}

