* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    color: #fff;
    min-height: 100vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Raleway', sans-serif;
}

.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

h1 {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 40px;
    color: #f0f0f0;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    padding: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1.5px;
}

/*

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.container > * {
    animation: fadeIn 0.8s ease-out forwards;
}
    */
    

img {
    border: 2px solid #b21f1f;
    border-radius: 50px; 
    width: 500px;
    height: 500px;   
}