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

body{
    background: fixed radial-gradient(circle, #ff7ac3, #ff2c5a);
}

.obfucator-top{
    position: fixed;
    width: 100%;
    height: 50%;
    background: rgb(255, 22, 22);
    top: 0;
    left: 0;
    z-index: 15;
    box-shadow: 0px 0 10px rgba(0, 0, 0, 0.5);
    transition: all 1s ease-in-out;
}

.obfucator-bottom{
    position: fixed;
    width: 100%;
    height: 50%;
    background: rgb(255, 31, 31);
    bottom: 0;
    left: 0;
    z-index: 14;
    transition: all 1s ease-in-out;
}

.container{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.container button{
    background: none;
    border: none;
    transition: all 0.3s ease-in-out;
}

.container button:hover{
    cursor: pointer;
    transform: translateY(-10px);
}

header {
    text-align: center;
    background-color: aliceblue;
    font-family: 'Pacifico', cursive;
    font-size: 3em;
    color: rgb(0, 0, 0);
}

main{
    background: white;
    text-align: center;
    background-color: white;
    font-family: 'Arial', sans-serif;
    font-size: 1.5em;
    color: black;
    padding: 3%;
    margin: 10%;
    border-radius: 5px;
    transition: all 1.5s ease-in-out;
    filter: opacity(0);
    text-align: left;
}

main h2{
    transition: all 0.3s ease-in-out;
}

main section{
    margin-bottom: 20px;
}

main p{
    margin-bottom: 15px;
}