body, html {
    height: 100%;
    font-size: 16px;
    font-family: "Merriweather Sans","Open Sans",sans-serif;
    margin: 0;
}

.full-screen-wrapp {
    height: 100%;
    background-color: #fff;
    background-image: url("../images/petwell-background_1920x1080.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.container {
    margin: 0 auto;
    padding: 5%;
}

.wrapp {
    height: 650px;
    
}
    .wrapp .logo {
        height: 50%;
        display: flex;
        align-items: flex-end;
    }
        .wrapp .logo img {
            height: fit-content;
        }

.wrapp .description {
    margin-top: 70px;
    padding: 0 15px;
}
    .wrapp .description h1 {
        font-size: 2.2rem;
        font-weight: normal;
    }
    .wrapp .description a {
        font-size: 2rem;
        color: #000;
        font-weight: bold;
        text-decoration: none;
    }
    .wrapp .description a:hover {
        text-decoration: underline;
    }

@media only screen and (max-width: 768px) {
	.wrapp {
		height: auto;
	}

    .wrapp .logo {
        width: 70%;
        height: 12rem;
    }
    .wrapp .logo img {
        width: 100%;
        height: auto;
    }

    .wrapp .description h1 {
    	font-size: 1.9rem;
    }
}