html {
  scroll-behavior: smooth;
}

body {
  background-image: url('https://projects.codecraftworks.com/web/JY6RQj4YyGNheaXEeRO9/assets/plufow-le-studio-lFjIBTDlYuo-unsplash (1).jpg');
  background-size: contain;
  
  /* CURSORS */
  cursor: url('https://projects.codecraftworks.com/web/JY6RQj4YyGNheaXEeRO9/assets/219336.png'), auto;

}

a:hover,
summary:hover,
.btn:hover {
  cursor: url('https://projects.codecraftworks.com/web/JY6RQj4YyGNheaXEeRO9/assets/219340.png'), pointer;
}

/* HEADER */
header {
  text-align: center;
  color: lavender;
}

h1 {
  font-family: "Crete Round", sans-serif;
  font-size: 80px;
  margin-bottom: 0.5px;
  margin-top: 25px;
}

header p {
  font-family: "Asap";
  font-size: 55px;
  margin-top: 5px;
  font-weight: bold;
}

/* SKIP */
#skip {
	position:absolute;
	left: -1000px;
  color: lavender;
}

#skip:focus {
	position:static;
  width:auto;
  height:auto;
}

/* NAVIGATION */
#nav {
	width: 100%;
  background-color: lavender;
  border-radius: 10px;
}
#nav-items {
	display: flex;
}
#nav-items a {
  font-family: "Asap";
  font-weight: bold;
  font-size: 25px;
  color: rebeccapurple;
	flex-grow: 1;
  flex-basis: 0;
  padding: 10px;
  text-decoration: none;
  text-align: center;
}

#nav-items a:hover {
  text-decoration: underline dotted 4px rebeccapurple;
  border-radius: 10px;
}

#nav label,
#hamburger {
	display: none;
}

@media screen and (max-width: 576px){
  #nav-items a {
    box-sizing: border-box;
    display: block;
    width: 100%;
    border-top: 1px solid #333;
}
  
#nav label { 
    display: inline-block; 
    color: white;
    background: rebeccapurple;
    font-style: normal;
    font-size: 1.2em;
  	border-radius: 5px;
    padding: 10px;
    cursor: pointer;
}
  
#nav-items { 
  display: none; 
}

#nav input:checked ~ #nav-items { 
    display: block; }
}

nav a#current {
  text-decoration: underline dotted 4px rebeccapurple;
  border-radius: 10px;
}

/* CONTAINER */
#container {
  background-color: lavender;
  border-radius: 20px;
  max-width: 90%;
  height: auto;
  margin: 20px auto;
  overflow: hidden;
  padding: 20px;
}

/* RESUME */
.iframe-container {
  display: flex;
 	justify-content: center;
 	align-items: center;
}

iframe {
  max-width: 100%; 
	width: 800px;
 	height: 400px;
 	border: 0;
}

/* DOWNLOAD LINK */
.download-container {
  text-align: center;
  margin-top: 20px; 
}

.download-link {
  font-family: "Asap";
  font-size: 20px;
  color: rebeccapurple;
}

.download-link:hover {
  text-decoration: underline dotted 3px rebeccapurple;
}


/* FOOTER */
footer {
  background-color: lavender;
  text-align: center;
  max-width: 100%;
  padding: 10px;
  font-family: "Asap";
  text-align: center;
}

#f-link {
  color: rebeccapurple;
}

#f-link:hover {
  text-decoration: underline dotted 2px rebeccapurple;
}