* {
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: bolder;
    font-size: 1.2rem;
}

@media screen and (max-width: 650px) {
    * {
        font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        font-weight: bolder;
        font-size: 1rem;
    }
}

@media screen and (max-width: 565px) {
    * {
        font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        font-weight: bolder;
        font-size: 0.9rem;
    }
}

h1 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    letter-spacing: 1px;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 5rem;
    color: steelblue;
    text-transform: uppercase;
    text-shadow: 4px 4px 5px blue;
}

h2 {
    font-size: 2rem;
    margin: 10px 0;
}

h3 {
    font-size: 1.5rem;
    margin: 10px 0;
}

p {
    margin: 15px 0;
}

a {
    color: navy;
}

a:hover {
    color: darkred;
    transition: 0.2s;
}

body {
    background-image: url("../assets/images/index-background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin: 0;
}

header {
    background-color: rgba(128, 128, 128, 0.5);
    text-align: center;
    padding-top: 10px;
    padding-bottom: 20px;
}

header nav a {
    background-color: rgba(240, 248, 255, 0.2);
    display: inline-block;
    padding: 5px 7px;
    justify-content: center;
    border: 2px solid rgba(0, 0, 0, 0.5);
    font-size: 2rem;
    text-decoration: none;
    color: black;
}

header nav a:hover {
    background-color: rgba(240, 248, 255, 0.7);
    transition: 0.3s;
    color: rgb(50, 50, 50);
}

.main-field {
    position: relative;
    display: flex;
    justify-content: space-evenly;
}

.main-field div[class="block"]{
    padding: 10px;
    margin: 20px;
    border: 2px solid black;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.6);
}

#column-one {
    display: inline-block;
    position: relative;
    width: 50%;
}

#column-two {
    display: inline-block;
    position: relative;
    width: 50%;
}