/*  CSS CITATIONS 
This CSS file is released under the MIT License (MIT)

Copyright (c) 2022 r4ms3s (https://codepen.io/r4ms3s/pen/gajVBG)
Copyright (c) 2022 Emanuel Gonçalves (https://codepen.io/emanuelgsouza/pen/YVJOZo)
Copyright (c) 2022 Lokesh Mehra (https://codepen.io/creators-sin/pen/ExayLM)
Copyright (c) 2022 Jamie Coulter (https://codepen.io/jcoulterdesign/pen/xVJWvz)

960 Grid System ~ Core CSS.
  Learn more ~ http://960.gs/

  Licensed under GPL and MIT.
 */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');


body {
  font-family: 'Space Grotesk', sans-serif;
}

h1 {
	font-family: 'Russo One', sans-serif;
	font-size: 30px;
}

.paragraph {
	font-size:18px;
	line-height: 1.8;
	text-indent: 50px;
}
nav{;
width:1360px;
height:100px;
margin:auto;
font-family: 'Russo One', sans-serif;
}

nav .link {
  position: relative;
  padding: 1em 3em;
  border: none;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  font-size: 18px;
  margin: 1em 0.8em;
}
nav .link.type3 {
  color: #435a6b;
}
nav .link.type3.type3::after, nav .link.type3.type3::before {
  content: "";
  display: block;
  position: absolute;
  width: 20%;
  height: 20%;
  border: 2px solid;
  transition: all 0.6s ease;
  border-radius: 2px;
}
nav .link.type3.type3::after {
  bottom: 0;
  right: 0;
  border-top-color: transparent;
  border-left-color: transparent;
  border-bottom-color: #435a6b;
  border-right-color: #435a6b;
}
nav .link.type3.type3::before {
  top: 0;
  left: 0;
  border-bottom-color: transparent;
  border-right-color: transparent;
  border-top-color: #435a6b;
  border-left-color: #435a6b;
}
nav .link.type3.type3:hover:after, nav .link.type3.type3:hover:before {
  border-bottom-color: #435a6b;
  border-right-color: #435a6b;
  border-top-color: #435a6b;
  border-left-color: #435a6b;
  width: 100%;
  height: 100%;
}