@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.screen {
    display: flex;
    width: 100%;
    height: 100vh;
    background: url(/assets/img/bg_v4.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.block {
    margin: 5px;
    border-radius: 10px;
    border: 2px solid rgb(17, 48, 0);
    box-shadow: 0 0 10px rgba(17, 48, 0, 0.5);
}

.blur {
    backdrop-filter: blur(3px);
}

.push {
    display: flex;
    background: rgba(255, 255, 255, 0.418);
    width: 250px;
    height: 80px;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    font-family: "Roboto Condensed", sans-serif;
    backdrop-filter: blur(3px);
}

.content {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.418);
    width: 350px;
    height: 650px;
    align-items: center;
    justify-content: flex-start;
    backdrop-filter: blur(3px);
}

.zone_avatar {
    margin: 10px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(17, 48, 0, 0.5);
    background: #fff;
    overflow: hidden;
}

img {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

.zone_button {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 350px;
    height: 430px;
}