@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Titan+One&display=swap');

.wrapper{
    max-width: 90%;
    margin: auto;
    background-color: white;
    margin-top: 10px;

    /* ANIMATION */
    position: relative;
    animation-name: show-up;
    animation-fill-mode: forwards;
    animation-duration: 1s;
}

@keyframes show-up{
    0%{
        top: 30px;
        opacity: 0;
    }
    100%{
        top: 0px;
        opacity: 1;
    }
}

.theHeading{
    border-bottom: 3px solid rgb(214, 214, 214);
}

body {
    background-image: url('../img/jess-bailey-q10VITrVYUM-unsplash.jpg');

    /* ANIMATION */
    animation-name: fade-in-content;
    animation-fill-mode: forwards;
    animation-duration: 2s;
}

@keyframes fade-in-content{
    0%{
        background-color: white;
        opacity: 0;
    }
    100%{
        background-color: transparent;
        opacity: 1;
    }
}

header {
    background-color: rgb(32, 88, 127);
    color: white;
    padding: 3px;
    background-attachment: fixed;
    background-size: cover;
    text-align: center;
}

header p{
    margin-left: 2%;
    font-family: 'Titan One';
    /* font-weight: normal; */
    font-size: 30px;
}

footer p{
    font-family: 'Titan One';
    text-align: center;
    /* font-weight: normal; */
    font-size: 25px;
}

footer {
    background-color: rgb(143, 207, 255);
    padding: 10px;
    text-align: center;
}

main h1{
    text-align: center;
}

main p{
    margin-left: 23px;
}

main{
    width: 95%;
    margin: auto;
    font-family: 'Montserrat';
}

/* body {
    background-color: rgb(0, 132, 172);
} */

.trials{
    font-weight: bold;
}

.institutions{
    list-style-type: none;
}

@media (min-width: 768px){
    header{
        text-align: left;
    }

    main h1{
        text-align: left;
    }
}