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

body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    font-family: sans-serif;
    background-image: linear-gradient(to right, #abe9cd, #3eadcf);
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-wrapper {
    width: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.img-con {
    width: 400px;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;

}

.img-con img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.controls {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;

}

button {
    padding: 0.35em 1.2em;
    border: 1px solid #FFFFFF;
    margin: 0 0.3em 0.3em 0;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 300;
    color: #000000;
    cursor: pointer;
    transition: all 0.2s;
}

button.disabled {
    opacity: 0.65;
    cursor: not-allowed;
}


button:hover {
    color: #000000;
    background-color: #FFFFFF;
}