body {
    font-family: Coiny, Georgia, Times, 'Times New Roman', serif;
    margin: 0;
    padding: 20px;
}

.header {
    padding: 70px;
    text-align: center;
    background: lightskyblue;
    color: white;
}

.header h1 {
    font-size: 50px;
}

.smallheader {
    padding: 20px;
    text-align: center;
    background: lightskyblue;
    color: white
}

.smallheader h1 {
    font-size: 40px;
}

.navbar {
    overflow: hidden;
    background-color: #3c64e5;
}

.navbar a{
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;

}


.navbar a.right{
    float: right;
}

.navbar a:hover {
    background-color: #f1f1f1;
    color: skyblue
}

.row {
    display: flex;
    flex-wrap: wrap;

}

.side {
    flex: 30%;
    background-color: rgb(204, 235, 251);
    padding: 20px;
}

.main {
    flex: 70%;
    background-color: white;
    padding: 20px;
}

.img {
    background-color: #aaa;
    width: 100%;
    padding: 20px;
}



@media screen and (max-width: 700px) {
    .row {
        flex-direction: column;
    }
}


@media screen and (max-width: 400px) {
    .navbar a {
        float: none;
        width: 100%;
    }
}

.footer {
    padding: 20px;
    text-align: center;
    background: #ddd;

}


.circle {
    width: 400px;
    height: 400px;
    border-radius:50%;
    background-color: lightskyblue;
    display: flex;
    justify-content: center;
    align-items: center;

}

.circle img {
    width: 100px;
    height: 100px;
    display: flex;
    display: circle;
    align-items: center;
}

.circle a {
    display: circle;
    text-align: center;
    font-size: 30px;
    margin: 0;
    color: rgb(65, 137, 219);
}

.circle a:hover {
    background-color:rgb(127, 246, 255);
    color: white;

}

.coiny-regular {
    font-family: "Coiny", system-ui;
    font-weight: 300;
    font-style: normal;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.column {
    float: left;
    width: 50%;
    padding: 10px;
    height: 300px;
}

@media screen and (max-width: 600px) {
    .column {
        width: 100%;
    }
}

.leftcolumn {
    float: left;
    width: 75%;
}

.leftcolumn h2 {
    font-size: 50px;
}

.leftcolumn h5{
    font-size: 20px;
}
.rightcolumn {
    float: left;
    width: 25%;
    padding-left: 20px;
    background-color: rgb(183, 215, 241);
}

.card {
    background-color: white;
    padding: 20px;
    margin-top: 20px;
}

.row:after {
    content:"";
    display: table;
    clear: both;
}

@media screen and (max-width: 800px) {
    .leftcolumn, .rightcolumn {
        width: 100%;
        padding: 0;

    }
}