* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #222d33;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    width: 100%;
    overflow: hidden;
}

.container {
    width: 50px;
    height: 50px;
}

.container-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.container button {
    padding: 8px 16px;
    background-color: #b1e22b;
    border: none;
    outline: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
}

.container img {
    width: 400px;
    border: 4px solid #dce22b;
    margin-top: -100px;
    display: none;
}

.loader {
    position: relative;
    width: 60px;
    height: 60px;
    border: 5px solid #fff;
    border-radius: 100%;
    animation: LoaderAnimation 1s linear infinite;
    display: none;
}

.loader::before {
    content: "";
    position: absolute;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    left: 3.5px;
    border: 3px solid #00aaff;
    border-radius: 100%;
    top: 5px;
}

.loader::after {
    content: "";
    position: absolute;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    right: 3.5px;
    border: 3px solid #ff3d00;
    border-radius: 100%;
    top: 20px;
}

@keyframes LoaderAnimation {
    0%{
        transform: rotate(0);
    }
    100%{
        transform: rotate(360deg);
    }
}