body {
    margin: 0;
    padding: 0;
    background-color: white;
    color: black;
}

.topnav a.wg {
    float: right;
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.topnav {
    overflow: hidden;
    background-color: whitesmoke;
    border-bottom: 1px solid black;
}



.topnav a.active {
    background-color: #ADD8E6;
    color: black;
}

.topnav .icon {
    display: none;
    background-color: #ADD8E6;
    color: white;
    transition:color  0.25s;
}

@media screen and (min-width: 600px) {
    .topnav a {
        float: left;
        display: block;
        color: black;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 17px;
    }
    .topnav a:hover {
        background-color: #ddd;
        transition: background-color 0.25s, color  0.25s;
        color: black;
    }
}

@media screen and (max-width: 600px) {

    .topnav a:not(:nth-child(6)) {
        display: none;
    }
    .topnav a.icon {
        float: right;
        display: block;
        position: absolute;
        right: 0;
        top: 0;
    }

    .topnav.responsive a.icon {
        background-color:  whitesmoke;
        color: black;
        transition:color  0.25s;
    }

    .topnav a {
        color: black;
        display: block;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 17px;
        align-content: center;
    }

    .topnav a.active {
        position: relative;
        float: none;
        display: block;
        text-align: center;
    }

    .topnav.responsive {position: relative;}
    .topnav.responsive a {
        float: none;
        display: block;
        text-align: center;
    }

    #content {
        flex-direction: row;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .website {
        min-width: 50%;
    }
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.footer-content p {
    margin: 0;
}

#footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background:#f5f5f5;
    border-top: 1px solid black;
    min-height: 50px;
    width: 100%;
}

#content {
    padding-left: 10%;
    padding-right: 10%;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}

.website {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: justify;
    width: 35%;
    min-width: 300px;
    min-height: 100%;
    margin: 25px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    padding: 10px;
    border-radius: 5px;
}

.website-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.website-link {
    font-size: 15px;
    margin-bottom: 0px;
    color: darkgrey;
}

.website-abt p {
    margin: 0px;
}

a {
    text-decoration: none;
    color: darkgrey;
}
a > p {
    margin: 0px;
}

.website-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

img {
    max-width: 100%;
    height: auto;
}

#welcome {
    margin-top: 20px;
    font-size: 30px;
}

#welcome-text {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 20px;
    text-align: justify;
}