body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #31473A;
    color: #EDF4F2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 20px;
    background: #87ab96;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    background:  #31473A;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.links a {
    display: inline-block;
    text-decoration: none;
    color: #FFFFFF;
    background:  #31473A;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 1.3em;
    transition: transform 0.2s, box-shadow 0.2s;
}

.links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(233, 12, 96, 0.7);
}

.crypto-icon {
    animation: float 4s infinite ease-in-out;
    width: 40px;
    margin: 0 auto;
    display: block;
}
img {
    width: 3%;          
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}