strong {
    font-weight: bold;
}

.left {
    align-items: start;
}

body {
    display: grid;
    grid-template-areas: 
        "nav"
        "h1"
        "blog"
        "h2"
        "footer";
    text-align: center;
    grid-template-rows: 100px 1fr 1fr 1fr 1fr 1fr;
    font-family: "Open Sans", sans-serif;
}

.W {
    background-color: lightgray;
}

.B {
    background-color: black;
    color: white
}

a {
    text-decoration: none;
    color: black;
    transition-property: font-size;
    transition-duration: 0.5s;
}

.B a {
    text-decoration: none;
    color: white;
}

nav {
    position: sticky;
    grid-area: nav;
    height: 75px;
    margin-bottom: 25px;
}

.icon {
    scale: 0.6;
    margin: -90px;
    float: left;   
}

.navigation a {
    margin: 30px;
    margin-top: 1000px;
    align-items: center;
    font-size: x-large;
}

a:hover {
    font-size: 26px;
}

.disclaimer {
    font-size: smaller;
}

#head1 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    grid-area: h1;
    margin: 30px;
}

.imgBox {
    border: 5px solid rgb(173, 173, 173);
    width: fit-content;
    height: fit-content;
}

.blog {
    grid-area: blog;
    margin: 30px;
}

.items {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.blog img {
    border-bottom: 1px solid black;
    padding: 10px;
    margin-bottom: 25px;
    max-width: 70%;
    width: 70%;
}

.blog h1, .blog h3, .blog h4 {
    text-align: center;
    margin: 5%;
}

#head2 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    grid-area: h2;
    margin: 30px;
}

.footer { 
    grid-area: footer;
    margin-top: 50px;
}

.footer .links {
    display: flex;
    scale: 0.05;
    width: 0px;
    height: 0px;
}

.box {
    margin: 5%;
    padding: 20px;
    width: 40%;
    border: 1px solid black
}

#item1, #item2, #item3 {
    border: 1px solid black;
    padding: 15px;
    margin: 2%;
    width: 20%;
}

.col1, .col2, .col3 {
    display: inline-flex;
    justify-content: start;
    flex-direction: column;
}

.subscribe {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subscribe h5 {
    display: inline-flex;
    justify-content: end;
    color: rgb(205, 205, 205)
}

input {
    background-color: black;
    height: 25px;
}

.active {
    font-weight: bold;
}

.required::after {
    content: "*";
    color: red;
}

.menu {
    display: none;
}

.content {
    margin: 10%;
    border: 1px solid; 
    padding: 10%;
    font-size: x-large;
}

@media screen and (max-width: 640px) {
    .links {
        display: none;
    }
    
    .menu {
        display: block;
        float: right;
        margin-right: 25px;
    }

    .menu {
        position: relative;
    }

    .menu-content {
        display: none;
        position: absolute;
        background-color: #313131;
        min-width: 130px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        padding: 12px 16px;
    }

    .menu:hover .menu-content {
        display: block;
        width: 220px;
        position: relative;
    }

}