
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    background-color: #f8f8f8;
    text-align: center;
    overflow: hidden; 
}



.image-container img.grey {
    position:  fixed;
    top: 0;
    left: 0;
    width: 50%;
    height: 50vh;
    object-fit: cover; 
}


.image-container img.gold {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 115vh;
    object-fit: cover; 
}


h1 {
    font-size: 50px;
    font-family: poppins;
    margin-bottom: 10px;
    color: #333;
    position: absolute;
    top: 30%;
    right: 5%;
    font-weight: 500;
    color: white;
    text-align: right;
}


h2 {
    font-size: 20px;
    font-family: poppins;
    color: #555;
    position: absolute;
    top: 50%;
    text-align: right;
    right:5%;
    left:60%;
    font-weight: 400;
    color: white;
    margin: 0 auto;
}

h3 {
    font-size: 50px;
    font-family: poppins;
    margin-bottom: 10px;
    text-align:left;
    color: #333;
    position: absolute;
    top: 30%;
    left: 5%;
    font-weight: 500;
    color: rgb(110, 110, 110);
}
.block-text {
    display: block;
    margin: 0;           /* remove any space */
    line-height: 1.2;    /* control line spacing */
  }
h4 {
    font-size: 20px;
    font-family: poppins;
    color: #555;
    position: absolute;
    top: 50%;
    text-align:left;
    left:5%;
    right:60%;
    font-weight: 400;
    color: rgb(110, 110, 110);
    
}


.button {
    display: inline-block;
    font-family: poppins;
    padding: 10px 20px;
    background-color: #d3b771;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 40px;
    font-size: 16px;

    position: absolute;
    top: 40%;
    transform: translateY(-50%);
}

.leftbutton {
    top:70%;
    left: 5%;
}

.rightbutton {
    top:70%;
    right: 5%;
}

@media (max-width: 500px){
    h3 {
        font-size: 250px;
        font-family: poppins;
        margin-bottom: 10px;
        text-align:left;
        color: #333;
        position: absolute;
        top: 30%;
        left: 5%;
        font-weight: 500;
        color: rgb(110, 110, 110);
    }
}
    
    
