
nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background-color: white;
    box-shadow: 0 0.225rem 0.25rem rgba(0, 0, 0, 0.16);
}

.large {
    font-size: 1.3rem;
    font-weight:bold;
}

.medium {
    font-size: 45;
    font-weight: bold;
}

.small {
    font-size: 20;
    font-weight:normal;
}

html, body {
    font-family:   arial ,tahoma, sans-serif;
    padding:0;
    margin: 0;
    /* height: 100%; */
    background-color: #faf8f8;
}

.footer {
    height: 120px;
    color: white;
    background-color: #505050;
}

.push {
    height: 100px;
}

nav a, nav button {
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: 7px;
    background-color: rgb(252, 251, 255);
    float: left;
    color: #5f5e5e;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    font-size: 19px;
    border-radius: 50rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.363);
}

nav a:hover, nav button:hover {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.109);
    background-color: #d7d4ee;
    color: rgb(0, 0, 0);
}

.beautiful-button{
    background-color: rgb(252, 251, 255);
    color: #5f5e5e;
    text-align: center;
    padding: 12px 26px;
    text-decoration: none;
    font-size: 14px;
    border-radius: 50rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.363);
}

.beautiful-button:hover{
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.109);
    background-color: #c8c2ff;
    color: rgb(0, 0, 0);
}

nav a.contact, nav button.contact {
    margin-left: 13%;
    color: white;
    background-color: #2937f0;
}

nav a.contact:hover, nav button.contact:hover {
    color: white;
    background-color: #1e28af;
}

nav .site-name {
    text-decoration: none;
    font-family: Georgia, Cambria, Cochin, Times, 'Times New Roman', serif;
    float: right;
    color: #000000;
    margin-right: 12%;
    margin-top: 21px;
    font-size: 35px;
}


.row {
    /* border: 1px solid red; */
    margin: 0;
    display: flex;
}

.column {
    /* border: 1px solid green;  */
    margin: 0;
    flex-direction: column;
    flex-grow: 1;
    flex-basis: 100%;
    padding: 10px;

}

.x2{
    flex-basis: 200%;
}

.row img, .column img {
    max-width:  100%;
}

.center{
    font-family:  arial ,tahoma, sans-serif;
    text-align: center;
}

ul {
    display: table;
    margin: 0 auto;
}

.column a {
    font-size: 20;
    text-decoration: none;
    color: white;
}

.container {
    border-radius: 10px;
    background-color: #e7e7f3;
    padding: 20px;
}
  
.col-25 {
    float: left;
    width: 25%;
    margin-top: 6px;
}
  
.col-75 {
    float: left;
    width: 120%;
    margin-top: 6px;
}

label {
    padding: 12px 12px 12px 0;
    display: inline-block;
}

input[type=submit] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.363);
}

  
input[type=submit]:hover {
    background-color: #45a049;
}

input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}
input[type=email], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

* {
    box-sizing: border-box;
}
  
  