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

html, body {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
}

body {
    background-image: url("assets/background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    color: black;
    font-size: 40px;
    align-items: center;
}
.title{
    background-color: white;
    opacity: 70%;
}
#outer {
    width: 100%;
    max-width: 400px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 20px;
    margin-top: 50px;
    margin-left:250px;
}

#innerContainer {
    color: #663399;
    padding: 15px 25px;
    width: 100%;
    text-align: center;
    border-radius: 10px;
    background-color: white;
}

#changing {
    font-size: 100px;
    height: 200px;
    line-height: 200px;
    margin-bottom: 20px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s, color 0.3s;
}

#changing:hover {
    background-color: rebeccapurple;
    border-radius: 10px;
    color: white;
}



