* {
    margin: 0;
    padding: 0;
    font-family: 'Hind Guntur', sans-serif;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    background: #dbf5c7;
    background-image: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('../images/background-image.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
}

.wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.logo {
    width: 220px;
    height: 95px;
    cursor: pointer;
}

.navbar {
    width: 85%;
    margin: auto;
    padding: 25px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar ul li {
    list-style-type: none;
    margin: 0 20px;
    display: inline-block;
    position: relative;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    text-align: center;
}

.navbar ul li a:hover {
    color: rgb(189, 255, 145);
}

.navbar ul li::after {
    content: '';
    height: 3px;
    background: rgb(189, 255, 145);
    position: absolute;
    left: 0;
}

.navbar ul li:hover::after {
    width: 100%;
}

.content {
    text-align: center;
    color: rgb(214, 250, 217);
    margin-top: 80px;
}

.content h1 {
    font-size: 70px;
}

.content p {
    margin: 20px auto;
    font-weight: 100;
    line-height: 25px;
}

.button-link {
    display: inline-block;
    width: 200px;
    padding: 15px 0;
    text-align: center;
    margin: 20px 10px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14.5px;
    border: 2px solid rgb(189, 255, 145);
    background: transparent;
    color: rgb(189, 255, 145);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.button-link:hover {
    background: rgb(189, 255, 145);
    color: rgb(0, 48, 0);
}

footer {
    background-color: rgba(0, 0, 0, 0.45);
    padding: 10px;
    text-align: right;
    position: relative;
    margin-top: 17%;
}

footer p {
    color: rgb(189, 255, 145);
    margin-right: 10px;
}