/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
 * HTML content. To learn how to do something, just try searching Google for questions like
 * "how to change link color." */

body {
    background-color: black;
    color: white;
    font-family: 'Aldrich';
}

#upbar1 {
    width:1300px;
    border-style: solid;
    background-color: white;
    color:black;
    border-color:white;
    padding: 5px;
    padding-left: 75px;
    margin: auto;
    margin-top: 50px;
    margin-bottom:0px;
    text-align: right;
    font-weight: bold;

}

.main {
    width:1380px;
    height:100%;
    border-style: solid;
    margin: auto;
    margin-bottom:50px;
}

ul {
    list-style-type: none;
}

#th01 {
    width:40%;
    vertical-align: top;
}

#th03 {
    width:60%;
    vertical-align: top;
}

#th02 {
    width:100px;
    vertical-align: top;
}

#menu {
    background-color: white;
    color: black;
    position: sticky;
    top:0;
    right:0;
    padding:10px;
    width: 200px;
    text-align:right;
    margin-left: 20px;
}


.text {
    position: absolute;
    margin-left:10%;
    margin-top:-150px;
    color: white;
    font-size: 20px;
    margin-top:50px;
}


img {
    margin:10px;
    max-width: 95%;
    height: 100%;
    transition: 0.3s;
}

a {
    color: black;
    text-decoration-line: none;
}

a:hover {
    color: #59E336;
    text-decoration-line: line-through;
    animation-name: colour;
    animation-duration: 0.2s;
}

@keyframes colour {
    from {color: black; text-decoration-line: none;}
    to {color: #59E336; text-decoration-line: line-through;}
}

.cont {
    position: relative;
}

.image {
    display: block;
    width: 100%;
    height: 100%;
}

.image-gallery img {
    object-fit: cover;
    border: 2px solid transparent;
    transition: border 0.3s;
}

.image-gallery img:hover {
    border: 2px solid #FF6A6A;
}

.info-box {
    background-color: #000;
    color: #fff;
    padding: 20px;
    width: 75%;
    height: 500px;
    display: flex;
    border: 2px solid #333;
    text-align: center;
    overflow: hidden;
}


.info-box p {
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE */


@media (max-width: 1300px) {

#upbar1 {
    width:100%;
    padding:0;
    padding-left: 0px;
    padding-bottom: 2px;
    padding-top: 2px;
    }

.main {
    width:100%;
    }
}
