* {
    box-sizing: border-box;
}

body {
    color: #020a61;
    background-image: url('assets/bgs/clouds.gif');
    background-repeat: repeat;
    text-align: center;
    font-family: "Ubuntu", sans-serif;
}

a:link {
  color: #020a61;
}

a:visited {
  color: #020a61;
}

a:hover {
  color: #ADBCED;
}

a:active {
  color: #020a61;
}

h1 {
    color: #020a61;
    font-family: "Jaro", sans-serif;
    font-style: italic;
    font-size: 50px;
    text-shadow: 3px 3px 3px white;
}

.text {
    background-color: rgba(50, 111, 173, .2);
}

span {
    background-color: rgba(50, 111, 173, .2);
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    justify-content: center;
    width: 100%;
}

.gallery img {
    max-height: 400px;
    object-fit: cover;
    margin-right: 10px;
}