body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 98vh;
    background: url('woosh.gif') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
}

.box {
    margin-top: 9%;
    text-align: center;
    padding: 2%;
    max-width: 90%;
    backdrop-filter: blur(8px);
    border-radius: 16px;
    color: wheat;
    background-color: rgba(29, 43, 38, 0.35);
    text-shadow: 2px 2px 5px black;
}

.box h1, 
.box p {
    font-weight: bold;
    background: linear-gradient(to right, #ffaa40, #000000, #ffffff);
    background-size: 200% auto;
    background-clip: text;
    color: transparent;
    animation: gradientAnimation 5s ease infinite;
}

.sol {
    border-radius: 50%;
    object-fit: cover;
    transition: 1s ease-in-out;
}
.sol:hover {
    border-radius: 16px;
    width: 300px;
    height: 300px;
}

.socials {
    margin-top: 15px;
}

.socials img {
    width: 30px;
    padding: 2%;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    transition: 0.3s;
}
.socials img:hover {
    transform: scale(1.1);
}

.highlight {
    text-transform: uppercase;
    font-variant: small-caps;
    color: #ffcc00;
}

.justify {
    text-align: justify;
    font-family: 'Courier New', monospace;
    width: 70%;
    color: wheat;
    text-shadow: 2px 2px 4px black;
}

.right {
    text-align: right;
    font-family: 'Courier New', monospace;
    width: 70%;
    color: wheat;
    text-shadow: 2px 2px 4px black;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
