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

.jua-regular {
    font-family: "Jua", sans-serif;
    font-style: normal;
    font-weight: 400;
}

body {
    background-image: linear-gradient(#312e81,
    #7c2d12, #312e81);
    background-repeat: no-repeat;
    font-family: "Jua", sans-serif;
}

main {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    display: flex;
}

h1 {
    text-align: center;
    font-size: 6em;
    color: #f97316;
}


h2 {
    margin-bottom: 1vh;
    font-size: x-large;
    color: white;
}

div>p {
    text-align: center;
    font-size: x-large;
    color: white;
    max-width: 550px;
    margin: 0 auto;
}

button>p {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-size: larger;
}

.sog {
    top: 0px;
    left: 0px;
    width: 15vh;
    height: auto;
    position: absolute;
    z-index: 999;
    transition: all 0.4s ease-out;
}

button {
    transition: transform 0.3s cubic-bezier(0.175, 0.885,
    0.32, 1.775), background-color 0.3s;
    background-color: rgba(154, 52, 18, 0.5);
    border: 1px solid rgba(249, 115, 22, 0.75);
    border-radius: 15px;
    cursor: pointer;
    padding: 2.5vh;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2),
        0 4px 6px -4px rgba(0, 0, 0, 0.2);
}

button:hover {
    background-color: rgba(194, 65, 12, 0.6);
    transform: scale(1.05) rotate(1deg);
}

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

.row {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 3vh;
}