:root {
    --white: #ffffff;
    --font: "Quicksand", sans-serif;
}
html, body {
    scroll-behavior: smooth;
}
/* Hero section */
.hero{
    text-align: center;
    background: url('img/cat1.jpg') no-repeat;
    background-size: cover;
    padding: 11vw 6vw;
    margin: 1.5vw 0.7vw 1.5vw 0.7vw;
}
.hero h1{
    font-size: 5em;
    font-weight: 400;
    margin-bottom: 0;
}
.hero p{
    font-size: 2em;
    font-weight: 400;
    margin-top: 1vw;
}
/* Body */
body{
    background-color: #F5B3A4;
    color: #ffffff;
    margin: 3vw 1vw;
    font-family: var(--font);
    font-weight:400;
    font-style: normal;
}
 body p {
    font-size: 1.5em;
    line-height: 1.5em;
    padding-left: 5vw;
    padding-right: 5vw;
    text-align: center;

 }
 h2{
    text-align: center;
    font-size: 2em;
 }
/* Sections */
.section {

    position: relative;
}
.section-1 h2 {
    font-size: 2.5em;
}
.section-3 {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    margin-top: 5vw;
}
.section-3 text {
    padding-right: 8vw;
}
.section-4 {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 5vw;
}
.section-4 text {
    padding-left: 8vw;
}

/* Images */
.row{
    display: flex;
    align-items: center;
    margin-left: 5vw;
    margin-right: 5vw;
}
.cat-image img{
    width: 100%;
}

.cat-image{
    padding-left: 2vw;
    padding-right: 2vw;
}

.imageOne {
    width:25%;
    margin-right: 10vw;
}
.imageTwo {
    margin-left: 10vw;
}

/*  */
.sidenav {
    position: fixed;
    top: 50%;
    right: 3vw;
    transform: translateY(-50%);
    z-index: 5;
}
.sidenav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.sidenav a {
    height: 20px;
    width: 20px;
    border-radius: 100%;
    display: inline-block;
    background-color: var(--white);
    margin-bottom: 1em;
    opacity: 0.6;
}
.sidenav a.active {
    opacity: 1;
}


