
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #333;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#container {
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #29abe2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.result-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.result-item {
    text-align: center;
    margin-bottom: 1.5rem;
}

.result-item h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #29abe2;
}

.result-item img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid #e22929;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.buttons-container {
    padding-right: 60px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    background-color: #be1e1e;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn img {
    width: 50px;
    height: 50px;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

.btn:hover {
    background-color: #1d7ea4;
}

.btn:active {
    transform: scale(0.95);
}

.reset {
    margin-top: 20px;
}

.reset button {
    padding: 10px 20px;
    background-color: #f44336;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.reset button:hover {
    background-color: #df3a2f;
}

.reset button:active {
    transform: scale(0.95);
}


@media (max-width: 768px) {
    .result-item img {
        width: 120px;
        height: 120px;
    }

    .btn img {
        width: 40px;
        height: 40px;
    }
}

