@import url('https://fonts.googleapis.com/css?family=Catamaran:200');
@import url('https://fonts.googleapis.com/css?family=Josefin+Sans:300');
@import url('https://fonts.googleapis.com/css?family=Nunito:200');
@import url('https://fonts.googleapis.com/css2?family=Lexend+Exa:wght@100..900&family=Oswald:wght@200..700&display=swap');
* {
    box-sizing: border-box;
}

body {
    font-family: 'Catamaran', sans-serif;
    color: #212529;
    font-size: 19px;
    line-height: 1.4;
}

body,
html {
    padding: 0;
    margin: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

p {
    font-family: 'Catamaran', sans-serif;
    color: #212529;
    font-size: 19px;
    line-height: 1.4;
    text-align: justify;
}

h1 {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    color: #003b58;
    font-size: 25px;
}

h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    color: #003b58;
    font-size: 22px;
}

a {
    text-decoration: none;
    color: #003b58;
}

ul {
    list-style-type: none;
}

.line-info {
    transition: all .6s ease-out;
    transform: scale(0);
    background-color: #fdd568;
    height: 1px;
    width: 100%;
}

.line-info-animation {
    transform: scale(1);
}

.line-footer {
    transition: all .6s ease-out;
    transform: scale(0);
    background-color: #fdd568;
    height: 1px;
    width: 40vw;
}

.line-footer-animation {
    transform: scale(1);
}

.line-left {
    transition: all .6s ease-out;
    transform: scale(0);
    background-color: #fdd568;
    height: 1px;
    width: 40vw;
}

.line-left-animation {
    transform: scale(1);
}

.line-right {
    transition: all .6s ease-out;
    transform: scale(0);
    background-color: #fdd568;
    height: 1px;
    width: 40vw;
}

.line-right-animation {
    transform: scale(1);
}

.fadeIn-photo {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.4s ease-in-out;
}

.fadIn-photo-animation {
    opacity: 1;
    transform: translate(0);
}

.fadeIn-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s .6s ease-out;
}

.fadIn-up-animation {
    opacity: 1;
    transform: translateY(0);
}

.fadeIn-down {
    opacity: 0;
    transform: translateY(-30px);
    transition: all .6s .6s ease-out;
}

.fadIn-down-animation {
    opacity: 1;
    transform: translateY(0);
}

footer {
    padding-top: 30px;
    margin: auto 0;
    text-align: center;
}

.footer-text {
    padding: 20px 0;
}

.footer-text p {
    font-family: 'Josefin Sans', sans-serif;
    text-transform: uppercase;
    font-size: 1rem;
    text-align: center;
}

@media only screen and (max-width: 500px) {
    p {
        font-size: 19px;
        line-height: 1.4;
    }
    .footer-text p {
        font-size: 1rem;
    }
    h1 {
        font-size: 20px;
    }
}