body {
    background-color: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}
.right-side {
    position: fixed;
    left: 55%;
    bottom: 50%;
    width: 35%;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.title {
    background-image: linear-gradient(90deg, #1a73e8, #512da8 50%);
    font-size: 55px;
    width: 81%;
    padding: 8px;
    font-family: "Dela Gothic One", system-ui;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.left-side {
    position: absolute;
    left: 10%;
    bottom: 47%;
    width: 25%;
}
footer {
    text-align: center;
    margin-top: auto;
    font-family: Alef, system-ui;
}
.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #fff;
    color: #007bff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: background-color 0.3s, color 0.3s;
    margin: 5px;
    text-transform: uppercase;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.btn:hover {
    background-color: #00bfff;
    color: #fff;
}
.responsive-image {
    max-width: 100%;
    height: auto;
}
@media screen and (max-width: 480px) {
    .responsive-image {
        display: none;
    }
    body {
        font-size: 14px;
    }
    .left-side,
    .right-side {
        position: absolute;
        width: 100%;
        left: auto;
    }
    .title {
        font-size: 30px;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    footer {
        font-size: 12px;
        margin-top: 20px;
    }
    a {
        padding: 10px 20px;
    }
}
@media (max-width: 395px) {
    .right-side main section {
        text-align: center;
        width: auto !important;
        transform: translatex(0) translatey(0);
    }
    .right-side header h1,
    footer {
        width: auto !important;
    }
}

/* Link */
footer a{
    position:relative;
    top:-12px;
    color:#606060;
    text-decoration:underline;
   }   