/* Global CSS styles */
body,html {
  margin:0;
  padding:0;
  background-color: #191d2b;
  color: #FCFCFC;
  font-family: "sans-serif";
}

/* Header */
header {
	margin-top: 4%;
	text-align: center;
}

.display-image {
  border-radius: 50%;
  max-height: 100px;
}

h1 {
  font-size: clamp(18pt, 5vw, 20pt);
  line-height: 1.2;
}

/* Navigation */
nav a {
	display: block;
	background-color: #FCFCFC;
	color: #191D2B;
	border-radius: 25px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-self: center;
	text-decoration: none;
	font-size: clamp(12pt, 4vw, 16pt);
	margin-bottom : 2%;
	transition-duration: 0.3s;
	transition-property: transform;
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

nav a:hover {
    transform: scale(1.05) rotate(1deg);
}

.icon {
	display:flex;
	width: 80px;
	max-height: 100px;
	padding-left: 15px;
	justify-content: left;
	align-items: center;
}
.icon img {
	max-width: 60px;
	max-height: 60px;
}

.url_name {
	width: 90%;
	text-align: center;
	justify-content: center;
	align-self: center;
}

/* Global container sizes */
.container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0; 
  }
}

@media (min-width: 550px) {
  .container {
    width: 80%;
  }
}
