@import url("navbar.css");
@import url("about-me.css");
@import url("skills.css");
@import url("portfolio.css");
@import url("contact.css");
@import url("hamburger.css");
@import url("responsive.css");

* {
	margin: 0px;
  	padding: 0;
  }

body { 
	height: 100vh;
	font-family: Tahoma,Verdana,Segoe,sans-serif; 
	background-image: url("../images/background.jpg");
  	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

h1 {
  font-size: 2vw;
}

.grid {
	width: 100%;
	height: 100%;
  	display: grid;
  	grid-template-columns: 50% 50%;
	grid-template-rows: 150px 600px 150px;
}

.logo-container {
	grid-column: 1 / 2;
	grid-row: 1 / 2;
	display: flex;
	justify-content: left;
	align-items: center;
}

.logo {
	width: 80px;
	height: 60px; 
	padding: 20px;
}

.logo:hover {
  transform: scale(1.1);
}

.text-container {
	background-color: #c7b1b4;
	padding: 10px 30px 10px 30px;
	border-radius: 4px;
	width: 110%;
	height: 120%;
	text-align: center;
}

.title {
  display: flex;
  align-items: center;
  justify-content: center;  
  height: 60vh;
}

.RM-title {
	max-width: 30%;
	height: auto;
}

.link {
	color: #ffffff;
}

		