* {
    font-family: Roboto, sans-seif;
}

h1, h2, h3, h4 {
    color: rgb(223, 223, 223);
}

h1 {
    font-weight: 500;
}

h2 {
    font-weight: 400;
}

h3 {
    font-weight: 400;
}

h4 {
    font-weight: 400;
}

body {
    padding: 0 0;
    float: none; 
    background-color: rgb(17, 17, 17);
    margin-top: 5rem;;
}

.wrapper {
    width: 100%;
    max-width: 1080px; 
    display: flex;
    padding: 8px 12px;
    margin: auto;
}

.wrapper .right img {
    width: 15rem;
    border-radius: 15px;
    opacity: 1;
    transition: opacity 500ms ease-in;
}

.wrapper .right img.hidden {
    opacity: 0;
}

.wrapper .right .bar {
    height: 3px;
    background-color: rgb(27, 27, 27);
    border-radius: 5px;
    margin: 5px 15px 0 15px;
}

.wrapper .right .bar #loader {
    width: 50%;
    height: 3px;
    background-color: rgb(45, 45, 45);
    border-radius: 5px;
}

.wrapper .left {
    max-width: 400px;
}

.wrapper .left .title {
    display: flex;
    align-items: center;
}

.wrapper .left #buttons a {
    padding: 10px 36px;
    border-radius: 12px;
    color: rgba(146, 46, 118, 255);
    background-color: rgba(136, 49, 111, 0.3);
    
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-right: 1rem;
}

.footer {
    position: absolute;
    bottom: 0;

    padding: 16px 0;
    width: 100%;
    background-color: rgb(23, 23, 23);
    color: rgb(111, 111, 111);
}

.footer a {
    color: rgb(77, 135, 200);
}