@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300&display=swap');

* {
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2 Medium', sans-serif;
    overflow: hidden;
    margin: 0;
    background-image:  linear-gradient(to top, rgba(57,57,57,0.7), rgba(25,25,25,0.7)), url("https://images.unsplash.com/photo-1587654780291-39c9404d746b?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1650&q=80");
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container{
    width: 100%;
    display: flex;
    padding: 0 20px;
}

.slide{
    height: 90vh;
    border-radius: 20px;
    margin: 10px;
    cursor: pointer;
    color: #fff;
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: all 0.6s ease-in-out;
}
.slide h3{
    position: absolute;
    font-size: 24px;
    bottom: 30px;
    left: 40px;
    margin: 0;
    opacity: 0;
    text-shadow: black 1px 0 10px  ;
}

.slide.active{
    flex: 10;
}
.slide.active h3{
    opacity: 1;
    transition: opacity 0.5s ease-in 0.6s;}
A {
    color: #c7c7c7;
}
A:visited {
    color: rgb(160, 243, 232);
}
A:active {
    color: darkgray;
}


