@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
}

#presentation-background h1, #presentation-background p {
    margin: 0px;
    padding: 0;
}
/* HEADER */
#presentation-background {
    width: 100%;
    height: 300px;
    background-color: #000000;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
}

#presentation-title {
    font-size: 10rem;
    font-family: "Exo 2", 'Courier New', Courier, monospace;
    font-style: italic;
    text-shadow: 0px 0px 5px wheat;
    color: white;
    animation-name: text-apear-animation;
    animation-duration: 2s;
}

#presentation-subtitle {
    font-size: 2rem;
    font-style: italic;
    font-family: "Exo 2", 'Courier New', Courier, monospace;
    opacity: 50%;
    color: white;
    animation-name: text-apear-animation;
    animation-duration: 8s;
}

@keyframes text-apear-animation {
    from {opacity: 0%;}
    to {opacity: 100%;}
}

/* NAVBAR */
#navbar {
    z-index: 1;
    position: sticky;
    top: -1px;
}

#navbar-header {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100%;
    background-color: black;
    border-block: 1px solid grey;
}

#navbar-header li {
   float: left;
   margin-left: 5px;
   border-inline: 1px solid grey;
}

#navbar-header li a {
    font-family: "Exo 2";
    color: grey;
    background-color: #000000;
    display: block;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    transition: 250ms;
}

#navbar-header > li > a:hover {
    background-color: grey;
    color: black;
}



/* MAIN */
.section-title {
    font-family: "Exo 2";
    text-align: center;
    border-block: 5px solid black;
}

/*HTML y CSS */
/* SECTION 1*/

.app-container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-evenly;
    align-items: center;
    height: 400px;
    width: 100%;
}

.app-container > div {
    height: 80%;
    width: 40%;
    position: relative;
}

.text-app-container > h1 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 3rem;
    font-family: "Raleway";
    color: #A8D5E2;
    border-bottom: 1px solid #7699D4;
}

.text-app-container > p {
    text-align: justify;
    margin: 1;
    text-indent: 20px;
    font-size: 1rem;
    font-family: "Raleway";
    color: #A8D5E2;
}

.middle-draw-container {
    width: 100px !important;
    height: 100% !important;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
}

.first-line, .last-line {
    align-self: center;
    height: 50%;
    border: 3px solid black;
}

.middle-circle {
    align-self: center;
    height: 50px;
    width: 50px;
    border: 5px solid black;
    border-radius: 50%;
    background-color: #2c2c2c;

    color: grey;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;

}

.photo-app-container {
    border: 1px solid black;
    box-shadow: 0px 0px 5px black;
}

.photo-app-container:hover .text-photo-app-container {
    opacity: 100%;
    height: 100px;
}

.text-photo-app-container {
    position: absolute;
    bottom: 0;
    opacity: 0%;
    height: 0px;
    width: 100%;

    background-color: #6e6f70;
    border: 1px solid black;
    box-shadow: 0 0 5px bl;
    transition: 250ms;
    text-indent: 10px;
    font-family: "Exo 2", 'Courier New', Courier, monospace;

    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-start;
}

.text-photo-app-container h1, .text-photo-app-container p {
    margin: 0;
    padding: 0;
}

