html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  max-width: 100%;
  /* border: 1px solid grey; */
}

/* general */

html {
  font-size: 62.5%;
}
body {
  font-size: 1.8rem;
  line-height: 1.5;
  color: #4f4f4f;
  font-family: "Roboto", sans-serif;
  background-color: #f1f3f5;
}
h1 {
  font-size: 9rem;
  color: #fff;
  font-family: "Chelsea Market", cursive;
}
h2 {
  font-size: 3rem;
}
a {
  text-decoration: none;
  color: #4f4f4f;
}
button {
  font-size: 1.8rem;
  padding: 2% 4%;
  border-radius: 10px;
}

/* header section */

header {
  height: 8vh;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}
nav .logo {
  margin-left: 5%;
}
.logo a {
  font-size: 3rem;
}
.logo a:hover {
  color: #848484;
  transform: scale(1.2);
}
nav .menu {
  margin-right: 2%;
  width: 50%;
  display: flex;
  justify-content: flex-end;
}
.menu a {
  padding: 2% 4%;
}
.menu a:hover {
  color: #848484;
}
.menu a span {
  font-weight: bold;
}

/* first section styles */
.container {
  margin-bottom: 5%;
}
.display {
  margin: 3% 10%;
  padding: 10% 0;
  background-image: url(../assets/backgroundimage.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.display h1 {
  margin-bottom: 3%;
}
.display a {
  text-align: center;
  padding: 2%;
  background-color: #fff;
  border-radius: 10px;
  font-family: "Chelsea Market", cursive;
  color: #4dabf7;
}
.display a:hover {
  color: #1c7ed6;
}

/* projects section styles */
.project-icons {
  margin: 2% 5%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.project {
  width: 30%;
  height: 40%;
  text-align: center;
  margin-bottom: 5%;
}

.project img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.project img:hover {
  transform: scale(1.1);
}

/* footer section styles */
footer {
  height: 12vh;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
footer a {
  text-align: center;
  padding: 0.5% 1%;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #4f4f4f;
}
footer a:hover {
  color: #848484;
  border: 1px solid #848484;
}
.social-links {
  margin-left: 2%;
  margin-right: 5%;
}
.social-links a {
  background-color: #f1f3f5;
  color: #339af0;
  border: #339af0;
}
.social-links a:hover {
  color: #74c0fc;
  border: #74c0fc;
}
