* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.wrapper {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    max-width: 475px;
}

.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 77vh;
    height: 100%;
}

.logo {
    width: 20vw;
    max-width: 150px;
    margin-bottom: 35vh;
}

.btns {
    display: flex;
    flex-direction: column;
    gap: 2vh;
    align-items: center;
    width: 100%;
}

.btns a img {
    width: 65vw;
    max-width: 305px;
    height: auto;
}