<!doctype html>
<html lang="en-US">
<head>
    <title>Stylesheet</title>
<link rel="stylesheet" href="style.css">
</head>
        ul {
            list-style-type: none;
            margin: 0;
            padding: 0;
            overflow: hidden;
        }
        li {
            float: left;
            margin: 0px;
            padding: 0px;
            list-style-type: none;
            overflow: hidden;
 
        }
        .buttons {
            background-color: rgba(95, 19, 18, 0.5);
            border-radius: 12px;
            border: none;
            font-size: 100%;
            padding: 10px 50px 10px 50px;
            margin: 10px 10px 10px 24px;
        }
        li a {
            display: table;
            color: #D8C6B8;
            text-align: center;
            padding: 0px;
            text-decoration: none;
            font-family: goudy old style;
            font-size: 200%
 
        }
        body {
        background-color: #000000;
        }
        h1 {
            color: #D8C6B8;
            font-family: goudy old style;
            font-size: 300%;
        }
        h3 {
            color: #D8C6B8;
            font-family: goudy old style;
            font-size: 200%
        }
        p {
            color: #D8C6B8;
            font-family: goudy old style;
            font-size: 150%;
        }
        img {
            width:100%;
        }
/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
		.flip-card {
			  background-color: transparent;
			  width: 300px;
			  height: 200px;
			  border: 30px solid #000000;
		}
/* This container is needed to position the front and back side */
		.flip-card-inner {
			  position: relative;
			  width: 100%;
			  height: 100%;
			  text-align: center;
			  transition: transform 0.8s;
			  transform-style: preserve-3d;
		}

/* Do an horizontal flip when you move the mouse over the flip box container */
		.flip-card:hover .flip-card-inner {
				transform: rotateY(180deg);
		}

/* Position the front and back side */
		.flip-card-front, .flip-card-back {
			  position: absolute;
			  width: 100%;
			  height: 100%;
		}
		.flip-card-front {
			  background-color: #000000;
		}

/* Style the back side */
		.flip-card-back {
			  background-color: #000000;
			  color: #d8c6B8;
			  transform: rotateY(180deg);
		}
		.row1 {
			  display:flow-root;
			  flex-wrap:nowrap;
			  padding: 10px;
		}
		.row2 {
			  display:flow-root;
			  flex-wrap:nowrap;
			  padding: 0 4px;
	
		}

/* Create two equal columns that sits next to each other */
		.column {
			  flex: 0%;
			  padding: 0px;
		}

		.column img {
			  margin-top: 8px;
			  vertical-align: middle;
		}
        .socials {
            width: 17%;
            height: 30%;
            float: right;
        }
        footer {
            color: white;
            font-size: 100%
        }
</html>