@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;600&display=swap');
.row {

   margin: 35vh auto;
   width: 45vw;
   background-color: rgba(255, 255, 255, 0.85);
   padding: 40px;
   border-radius: 10px;
}

body {
    background-image: url('images/home.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Raleway', sans-serif;
}
h1 {
    color: #CC0000;
    font-size: 20px;
    font-weight: 600;
    margin: 20px 0 0 0;
}

img {
    max-height: 100%;
    width: auto;
    max-width: 100%;
}
p {
    margin: 20px 0 0 0;
}
html {
    height: 100%;
}


@media(max-width:750px){
    .row {
        margin: 35vh auto;
   width: 90vw;
    }
    img {
        height: auto;
    }
}
