@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');

.background-slideshow {
    width: 100%;
    height: 80vh;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    backface-visibility: hidden;
    animation: slideshow-data 60s infinite;
    animation-timing-function: ease-in-out; 
    background-image: url('../images/slider/negative_000.gif');
    display: flex;
    align-self: flex-end;
}

@keyframes slideshow-data {
    0% { 
        background-image: url('../images/slider/negative_001.gif');
    }
    20% {
        background-image: url('../images/slider/negative_002.gif');
    }
    40% {
        background-image: url('../images/slider/negative_003.gif');
    }
    60% {
        background-image: url('../images/slider/negative_004.gif');
    }
    80% {
        background-image: url('../images/slider/negative_006.gif');
    }
    100% {
        background-image: url('../images/slider/negative_007.gif');
    }
}

.flex-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;

}

.nav-bar {

    background-image: url("../images/yellow-bg.png");
    width: 100%;
    height:20vh;
    word-break: keep-all; 
    padding-left: 1rem;
    padding-top: 1vh;
    /*text-align: justify;*/
}

.contact-plane {
    background-image: url("../images/yellow-bg.png");
    width: 100%;
    height:10vh;
    word-break: keep-all; 
    padding-left: 1rem;
    padding-top: 0vh;
    font-size: 1.2rem;
    font-weight: 25;
    line-height: 70%;

}

body {
}

h1 {   
    color: rgba(179, 0, 0, 0.8);
    margin-top: 0rem;
    margin-left: 1rem;
    margin-bottom: 2rem;
    font-family: 'Oswald', sans-serif;
    font-size: 3vh;
	font-weight: 600;
    text-shadow: #b9b9b9 2px 2px 2px ;


}

h2 {   
    color: rgba(224, 168, 14, 0.8);
	margin-top: 0rem;
    margin-left: 2rem;
    margin-bottom: 2rem;
    font-family: 'Oswald', sans-serif;
    font-size: 4vh;
    text-shadow: #b9b9b9 2px 2px 2px ;

}

p {
    color: rgba(179, 0, 0, 0.8);
    font-family: 'Oswald', sans-serif;
    font-size: 2vh;
    line-height: 1rem;
}

a {
    color: rgba(179, 0, 0, 0.8);
    font-family: 'Oswald', sans-serif;
    text-decoration: none;
    font-size: 2vh;
    font-weight: 100;
    line-height: 100%;
}

a:focus   { 
    background-color: red;
    color: black;
    text-decoration:none;
}



a:active  { 
    
    background-color: yellow;
    color: none;
    text-decoration: none;

}

a:hover {
	color: #304452;
	text-decoration: none;
    background-color:none; 
}

/*@media (max-width: 800px) {

    .background-slideshow{
        height: 80vh;
    }

    .nav-bar{
        height: 20vh;
    }

    a{

        font-size: small;
    }

    p{

        font-size: small;
    }

  }*/