@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

body{min-height:100vh}

body {
    vertical-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    background: linear-gradient(rgb(46, 46, 46), rgb(24, 24, 24));
}

.btn {
    margin-bottom: 5px;
    padding: 5px 45px;
    border: solid rgb(255, 255, 255) 3px;
    border-radius: 13px;
    font-family: Nunito;
    color: rgb(255, 255, 255);
    background-color: rgba(101, 101, 101, 0.263);
    transition: all 0.4s;
}

.btn:hover {
    scale: 0.98;
}

.btn:active {
    scale: 0.95;
}

.wnd {
    width: 37%;
    height: 320px;
    margin-top: 30px;
    margin-top: 30px;
    text-align: center;
    background-color:rgba(255, 255, 255, 0.109);
    border-radius: 15px;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.wnd_title {
    color: white;
    font-family: Nunito;
}

.wnd_content {
    padding: 1em;
    background-color:rgba(255, 255, 255, 0.109);
    border-radius: 15px;
    font-family: Nunito;
    color: white;
}

.wnd_buttons {
    position: relative;
    margin-top: auto;
    padding: 1em;
    background-color:rgba(255, 255, 255, 0.109);
    border-radius: 15px;
}