* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@font-face {
    font-family: SFPro;
    src: url('./font/SFPro-Black.otf');
    font-weight: black;
    font-style: normal;
}

@font-face {
    font-family: SFPro;
    src: url('./font/SFPro-Bold.otf');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: SFPro;
    src: url('./font/SFPro-Semibold.otf');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: SFPro;
    src: url('./font/SFPro-Medium.otf');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: SFPro;
    src: url('./font/SFPro-Regular.otf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: SFPro;
    src: url('./font/SFPro-Light.otf');
    font-weight: 300;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    background-color: #E5E5E5;
    font-family: 'SFPro', sans-serif;
}

.page-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 52px 10px;
}

.unsbuscribe-block-wrapper {
    display: flex;
    max-width: 550px;
    width: 100%;
    padding: 32px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--background-white, #FFF);
    box-shadow: 2px 10px 40px 0px rgba(83, 85, 128, 0.10);
}

.unsbuscribe-block-wrapper h5 {
    color: #11142D;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 31.2px;
    margin: 0;
    max-width: 246px;
    width: 100%;
}

.unsbuscribe-block-wrapper p {
    max-width: 350px;
    width: 100%;
    color: #77808D;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.4px;
    margin: 0;
}

.buttons-wrapper {
    display: flex;
    justify-content: center;
}

.mat-button+.mat-button {
    margin-left: 12px;
}

.mat-button {
    display: flex;
    width: 160px;
    height: 52px;
    padding: 12px 22px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 16px;
    border-style: none;
    background-color: transparent;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    color: #11142D;
    cursor: pointer;
    text-decoration: none;
}

.mat-button.secondary {
    border: 1px solid #E5E9F2;
}

.mat-button.primary {
    background-color: #5B66EA;
    color: white;
}

.unsbuscribe-block-wrapper.third h5 {
    max-width: 430px;
}

.unsbuscribe-block-wrapper.second p {
    max-width: 380px;
}

.unsbuscribe-block-wrapper.second p a {
    color: #5B66EA;
    font-weight: bold;
    cursor: pointer;
}

@media screen and (max-width: 479px) {
    .unsbuscribe-block-wrapper {
        padding: 20px;
    }

    .mat-button {
        width: 140px;
    }
}