/*
I det här dokumentet hittar du all styling för det här projektet,
i morgon ska vi lära oss att skriva CSS.
*/

/* Här är styling som gäller för hela sidan */
body {
  box-sizing: border-box;
  font-family:'Montserrat', sans-serif;
  color: #000000;
  margin: 0;
}

h1 {
  font-family: 'Bad Script', cursive;
}

h2{
  font-family: 'Bad Script', cursive;
}

h3{
  font-family: 'Montserrat', sans-serif;
}

p{
  font-family: 'Montserrat', sans-serif;
}


.navbar {
  background-color: transparent;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
}

nav ul li{
list-style: none;
}

.navbar li{
float: left;
color: rgb(238, 238, 238);
}

.navbar li a{
  display: block;
  list-style: none;
  text-align: center;
  padding: 14px 16px;
  color: black;
  text-decoration: none;
}

.navbar a:hover{
color: white;
background-color: rgb(255, 125, 32);
}

.navbar a:selected{
  color: rgb(255, 125, 32);
  border-color: beige;
}











/* Här finns all styling för knappen */
.button {
  background-color: white;
  color: #ff726c;
  padding: 25px;
  border-radius: 40px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
}

/* Här är styling som gäller för alla rubriker och texter */
h1 {
  margin: 20px;
  font-size: 65px;
}

h2 {
  font-size: 25px;
  font-weight: 200;
  margin-bottom: 50px;
}

h3 {
  font-size: 15px;
  text-transform: uppercase;
}


p {
  font-size: 20px;
  font-weight: 200;
  color: black;
}

/* Här är styling för about-me sektionen */
.about-me {
  background-color: #ff872c;
  padding: 150px 30px;
  color: white;
  text-align: center;
}

/* Här är styling för bilden som ligger i about-me sektionen */
.about-me img {
  width: 180px;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}

/* Här är styling för greatness sektionen */
.greatness {
  padding: 50px 30px;
  width: 60%;
  margin: 0 auto;
}



#katter {
  background-color: #ff872c;
  color: white;
  height: auto;
  text-align: center;
}

.kattbilder{
  display: flex;
  flex-direction: row;
 justify-content: space-around;

}









.kattbilder img {
  height: 400px;
  width: auto; 
}
.about-me img {
  width: 180px;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}

.namn{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding-top: 10px;
}



.kattinfo{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 400px;
  
  }

#kattinfo{
  color: black;
  justify-content: space-around;
  display: flex;
  flex-direction: row;
    
}


/* Här är styling för footern på sidan */
footer {
  background-color: rgb(255, 125, 32);
  padding: 50px 100px;
}
