
:root {
    --theme-primary: #0c296f;
    --theme-primary-hover: hsl(222, 80%, 33%);
    --btn-fs: 24px;
}

.wrapper {
    height: 100vh;
}

.left-side {
    background-color: #bfa55f8a !important;
    display: flex;
    align-items: center;
    padding: 0 2em;
}

.right-side {
    background-color: #43525a;

    padding: 0 2em;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.btn-main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 0 40%;
    
    padding: .5em 2em;
    margin-right: 1em;
    
    background-color: var(--theme-primary);
    
    text-align: center;
    text-decoration: none;
    font-size: var(--btn-fs);
    color: #fff;

    transition: all .2s ease-in-out;
}

.btn-main:hover {
    color: #fff;
    background-color: var(--theme-primary-hover);
    text-decoration: none;
}

.btn-special{
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 0 40%;
    padding: 0.5em 2em;
    margin-right: 1em;
    background-color: #b79845;
    text-align: center;
    text-decoration: none;
    font-size: var(--btn-fs);
    color: #fff;
    transition: all .2s ease-in-out;
}
.btn-special:hover{
    color: #fff;
    background-color: #1f282cb8;
    text-decoration: none;
}



.copyright {
    position: absolute;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);

    display: flex;
    align-items: center;

    max-width: 500px;
    width: 100%;

    padding: 2em;

    background-color: hsla(0, 0%, 0%, 0.3);

    color: #fff;
}

.copyright p {
    margin: 0;
}

.copyright a {
    color: var(--theme-primary);
    text-decoration: underline;
}

.copyright a:hover {
    color: var(--theme-primary-hover);
}

.copyright .close {
    position: absolute;
    top: 15px;
    right: 15px;

    display: flex;
    align-items: center;
    justify-content: center;
    
    color: #fff;
    opacity: 1;

    outline: 0;
}


@media screen and (max-width: 576px) {
    .btn-container {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .btn-main {
        margin-bottom: 1em;
    }

    .btn-main:last-of-type {
        margin-bottom: 0;
    }
}