/**
SDEV305 Group Project Sprint1
@author Jessica

Edits: Jo 01/19/2023
Added styles for MatchPlay pages to single css file

CSS for MatchPlay Project

Sprint1/MatchPlay/styles.css
 */

header{
    background-color: black;
    color: black;
    position: relative;
    text-align: left;
    height: 190px;
    width: 100%;
    top: 0;
    left: 0;

}

/*image at top*/
#mandoMain {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 150px;
}

html {
    background-color: white;
}

/* divide the container into two equal columns */
.container {
    background-color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.column1{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 30px;
    height: 500px;
}

/*This is for the slideshow code*/

.slideshow-container {
    position: relative;
    width: 100%; /* make the slideshow take up the full width of the column */
}

.slideshow-images {
    position: relative;
}

.slideshow-image {
    width: 100%; /* make the images take up the full width of the column */
    height: auto;
    display: none; /* hide all images by default */

}


.slideshow-image.active {
    display: block; /* display the active image */
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%; /* position the arrows in the middle of the column */
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: greenyellow;
    background-color: lightslategrey;
    font-weight: bold;
    font-size: 45px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
}

.next {
    right: 0; /* position the next arrow on the right side of the column */
    border-radius: 3px 0 0 3px;
}

aside{
    padding-top: 200px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8); /* darken the background of the arrows when hovered */
}
/*slide show code ends for left column*/

.column2{
    background-color: #ffffff;
    padding: 30px;


    text-decoration: none;
    font-size: 1.7em;

    margin: 30px;
    height: 500px;
    /*opacity: 70%;*/

}

.column2  a:link, a:visited{
    color: darkred;
}

.column2 a:hover, a:active{
    color: #e1870c;
}


footer {
    background-color: black;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 2rem;            /* Footer height */

    text-align: center;
    /*font-weight: bold;*/
    text-decoration: none;
    font-size: x-large;
    padding-top: 70px;
}

/*Only for nav in footer of page*/
/* unvisited link */
footer > a:link {
    color: darkred;
}

/* visited link */
footer > a:visited {
    color: #e1870c;
}

/* mouse over link */
footer >a:hover {
    color: #e1870c;
}

/* selected link */
footer >a:active {
    color: darkred;
}

/*
Bracket Pages Styles
 */
.BracketPgBody {
    background-color: lightslategrey;
}

h1 {
    text-align: center;
    text-transform: uppercase;
    color: white;
}


@media screen and (max-width: 600px) {
    .column {
        width: 100%;
    }
}