body, header, nav, main, footer, h1, div, img, ul {
    margin: 0;
    padding: 0;
    border: 0;
}

body {
    background-color: #e2dde7;
}


img {
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right:auto;  
}

.tablet-desk {
    display: none;
}

header {
    font-family: 'Zen Maru Gothic', san-serif;
    background-color: #e2dde7;
    text-align: center;
    padding: 30px 10%;
    color: #1c0051;
    font-size: 30px;
    display: flex; 
    justify-content: flex-end;
    align-items: center;
}

.logo {
    margin-right: auto;
}

nav {
    font-family: 'Zen Maru Gothic', san-serif;
    padding: 1.5%;
    background-color: #e2dde7;
    text-align: center;
    font-size: 15px; 
}

nav a {
    color: #1c0051;
    text-decoration: none;
    transition: 0.2s;
    display: inline-block;
    padding: 10px
}

nav a:hover {
    color: #5600ff;
}

.social-icon {
    color: #1c0051;
    text-decoration: none;
    display: inline-block;
    padding: 10px;
    font-size: 18px; 
}

.social-icon:hover {
    color: #5600ff;
    transform: scale(1.3);
}

/* Style rules for main content  */
main {
    display: block;
    background-color: #e2dde7;
    font-family: 'Zen Maru Gothic', san-serif;
    padding: 30px 10%;
}

h2 {
    color: #5626c4;
}

h3 {
    color: #1c0051;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery {
    max-width: 50%;
    max-height: 50%;
    width: 100%;
    height: 100%;
}

.text {
    font-size: 16px;
    padding-right: 100px; 
}

footer {
    font-family: 'Antic Slab', serif; 
    font-size: .70em;
    text-align: center;
    margin-top: 2em;
}