@font-face {
    font-family: "Pt-root-ui";
    src: url("../fonts/PT-Root-UI_Regular.woff2");
}

  @font-face {
    font-family: "Pt-root-ui";
    src: url("../fonts/pt-root-ui_medium.woff2");
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Pt-root-ui", sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 100vh;
    color: white;
}

.modal {
    max-width: 800px;
    padding: 30px;
    background-color: #8c64d8;
    border-radius: 5px;
}

.modal-title {
    text-align: center;
    padding: 0 0 30px;
}

.modal-btn {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 30px;
}

.btn {
    border: none;
    padding: 15px 0;
    border-radius: 5px;
    background-color: #daef14;
}

.btn a {
    text-decoration: none;
    color: #000;
    padding: 15px 30px;  
}

.modal-text {
    text-align: center;
}