*{
    font-family: IRZar;
    margin: 0;
    padding: 0;
}

body{
    background-color: crimson;
}
.head{
    background-color: rgb(138, 18, 68);
    position: relative;
    text-align: center;
    padding: 30px;
    text-shadow: 20px 20px 20px red;
    font-size: 50px;
    border-radius: 30px;
}

.explain{
    text-align: center;
}
#sd{
    text-shadow: 10px 10px 20px black;
    border: solid 1px black;
    margin-top: 30px;
    padding: 20px;
    border-radius: 12px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
hr{
    
        width: 60%;
        height: 2px;
        background-color: black;
        border: none;
        margin: 15px auto;
}
#ss {
    text-decoration: underline;
    cursor: pointer;
    user-select: none;
    transition: 0.3s;
}

#ss:hover {
    color: #5e3030;
    transform: scale(1.05);
}
#copyMessage {
    opacity: 0;
    visibility: hidden;

    background: black;
    color: white;
    padding: 20px 30px;
    border-radius: 15px;
    font-size: 15px;
    font-weight: bold;

    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);

    transition: all 0.4s ease;
}


#copyMessage.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}
img {
    width: 250px;
    border-radius: 25px;
    display: block;
    margin: 30px auto;
}
footer {
    text-align: center;
    font-size: 17px;
    color: #000000;
    margin-top: 50px;
    padding: 20px;
    text-decoration: underline;
}
