body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background: radial-gradient(ellipse at right, #a75d5d, #d3756b, #f0997d);
}

.container {
    position: relative;
}

.content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding-top: 20%;
}

h1 {
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    background: -webkit-linear-gradient(319deg, #ffffff 0%, #7ccefa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#Image {
    height: 300px;
    width: 300px;
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: transparent;
    box-shadow: 0 4px 12px rgba(251, 251, 251, 0.3);
    border-radius: 10px;
    border: oldlace;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#Image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

#img {
    text-align: center;
    padding-top: 130px;
    background: linear-gradient(red, blue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.button {
    display: flex;
    justify-content: center;
}

button {
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: transparent;
    box-shadow: 0 4px 12px rgba(251, 251, 251, 0.3);
    border-radius: 10px;
    border: oldlace;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

button:hover {
    color: #ffffff;
}

#foot {
    height: 120px;
    text-align: center;
    color: #170101;
    position: fixed;
    width: 100%;
    bottom: 0;
}

.github-icon {
    font-size: 3rem;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.github-icon:hover {
    transform: scale(1.6) rotate(360deg);
}