@font-face {
    font-family: 'Scheme';
    src: url('SchemeRg-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

* {
    font-family: 'Scheme', sans-serif;
}

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.accent {
    position: fixed;
    width: 100vw;
    height: auto;
    z-index: -1;
}

@media (orientation: portrait) {
    .accent {
        position: fixed;
        width: auto;
        height: 100vh;
        max-width: 100%;
        object-fit: cover;
        left: 50%;
        transform: translateX(-50%);
    }
}

.container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

h3 {
    -webkit-text-stroke: 0.5px white;
    color: rgb(133, 166, 208);
    /*color: rgba(0,0,0,0)!important;*/
    text-shadow: 5px 5px 0px #50bdb8 !important;
    font-size: 5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2rem;
    text-align: center;
    opacity: 0;
    transform: translateY(-20px);
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
}

.social-button {
    font-weight: 700;
    font-size: 1.2rem;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    background-color: #0da382;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
}

.social-button:hover {
    background-color: #0b8a6e;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    h3 {
        font-size: 3rem;
    }
}