* {
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(135deg, rgb(4, 89, 119), rgb(6, 21, 121));
    display: flex;
    align-items: center;
    justify-content: center;
}

.main {
    width: 75%;
    height: 50vh;
    border: solid 1px gold;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 8px 8px 0 0px black;
}

.main h1{
    color: gold;
}

.main span{
    color: white;
    width: 70%;
    margin: 5px;
    direction: rtl;
}

.main .start{
    width: 200px;
    padding: 12px;
    color: gold;
    border: solid 1px gold;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    transition: 0.5s;
    
}

.main .start:hover{
    background: gold;
    color: black;
    cursor: pointer;
}