body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 1200px;
    position: relative;
    overflow-y: scroll; /* Enables vertical scrolling */
    overflow-x: hidden; /* Prevents horizontal scroll */        
}
h1 {
    font-size: 77px;
    text-align: left;
    position: relative;
    z-index: 2;
}
p {
    font-size: 25px;
    text-align: left;
    position: relative;
    z-index: 2;
}
.image-box {
    position: absolute;
    z-index: 1;
    right: 0;
}
.image-box img {
    position: relative;
    max-width: 666px;
    right: 0;
}
.warp{
    position: absolute;
    z-index: 2;
    left: 0;
}
.center-box {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    position: relative;
    
}
.curved-box {
    width: 410px;
    height: 60px;
    background-color: white;
    border-radius: 50px;
    color: black;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    gap: 10px;
}
.curved-box img {
    height: 45px;
    vertical-align: middle;
}

.gradient-button {
    background: linear-gradient(to right, grey, white); /* Horizontal gradient */
    border: none;
    color: black;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.gradient-button:hover {
    transform: scale(1.05); /* Slight zoom on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow */
}

.gradient-button:active {
    transform: scale(0.98); /* Slight shrink on click */
}

.contact-us {
    color: goldenrod;
    font-weight: bold;
    font-size: 18px;
}

.contact-us a {
    color: goldenrod
}

.contact-us a:hover {
    color: gold;
    text-decoration: underline;
}


@media (max-width: 1024px) {
    .container {
        background-color: #ff9800;
        font-size: 20px;
    }
    body{
        width: 90%;
    }
    .center-box{
        width: 90%;
    }
    h1 {
        font-size: 60px;
    }
    p {
        font-size: 25px;
    }
    .image-box img {
        max-width: 450px;
        margin-top: 45px;
    }
}

@media (max-width: 940px) {
    .container {
        background-color: #ff9800;
        font-size: 20px;
    }
    body{
        width: 100%;
    }
    .center-box{
        width: 100%;
    }
    .warp{
        margin-left: 50px;
    }
    h1 {
        font-size: 60px;
    }
    p {
        font-size: 25px;
    }
    .image-box img {
        max-width: 450px;
        margin-top: 45px;
        right: -10%;
    }
}

@media (max-width: 810px) {
    .container {
        background-color: #f44336;
    }
    .center-box{
        width: 100%;
    }
    .warp{
        margin-left: 30px;
    }
    h1 {
        font-size: 50px;
    }
    p {
        font-size: 20px;
    }
    .image-box img {
        max-width: 400px;
        margin-top: 40px;
    }
}

@media (max-width: 680px) {
    .container {
        background-color: #2196f3;
        font-size: 16px;
    }
    .curved-box{
        width: 80%;
        margin-top: 100px;
        font-size: 20px;
    }
    .curved-box img{
        height: 40px;
    }
    .image-box img {
        right: -45%;
        max-width: 100vw;
        margin-top: 150px;
    }
}

@media (max-width: 400px) {
    body{
        width: 400px;
        overflow: scroll;
    }
    .center-box{
        overflow: scroll;
    }
}
