
 *,*::before, *::after {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
   }


body {
    background-color: #f9fcfb; 
    height: 100vh;
    justify-items: center;
    align-items: start;

}


main {
    position: relative;
    overflow: hidden;
    width: 210mm;
    height: 297mm;
    background-color: #f4e8f6;
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: stretch;
    text-align: center;
    transform: scale(0.7);
    transform-origin: top center;
}



img {
    width: 100%;
    height: 100%;
}
main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 76% center; /*færir mynd left,center, right í %*/
    display: block;
}



  main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.text {
    margin: 0 auto;
    text-align: left;
    width: 80%;
    align-self: center;
}


.smalltext {
    font-size: 12px;
    letter-spacing: 2px;
    color: #E19E97;
    font-weight: bolder;
}

h1 {
    font-size: 84px;
    font-weight: lighter;
    line-height: 1.1;
    margin-bottom: 20px;
}

h2 {
    font-size: 28px;
    font-weight: lighter;
    margin-bottom: 20px;
}

.text p {
    font-size: 22px;
    line-height: 1.5;
}


.website {
    color: #c78780;
    font-size: 20px;
    padding-top: 30px;

    display: inline-block;
    transition: 0.3s;
}

.website:hover {
    color: #000000;
    transform: translateY(-6px);
}



main > * {
    position: relative;
    z-index: 1;
}



main::before,
main::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: #ead5d2;
    z-index: 0;
}

/* top-left + bottom-left */
main::before {
    top: -60px;
    left: -60px;
    box-shadow: 0 650px 0 0 #ead5d2;
}

/* top-right */
main::after {
    top: -60px;
    right: -60px;
}