@font-face {
    font-family: 'PSM';
    src: url('PSM-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'PSM';
    src: url('PSM-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'PSM';
    src: url('PSM-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'PSM';
    src: url('PSM-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: 'PSM', Fallback, sans-serif;
}

.container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

h1 {
    color: #ff6300;
    text-transform: uppercase;
    font-size: 55px;
    text-align: center;
    font-weight: 700;
}

h1 span {
    display: block;
}

button {
    padding: 15px 40px;
    background-color: #ff6300;
    border-radius: 75px;
    border: 0;
}

button a {
    font-family: inherit;
    color: white;
    text-decoration: none;
    font-size: 35px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

button a span {
    display: block;
}

@media screen and (min-width: 768px) {
    button {
        padding: 20px 80px;
    }

    button a {
        gap: 20px;
    }

    button a br {
        display: block;
    }
}

br{
    display: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.spinner-container {
    position: relative;
}

.spinner {
    animation: spin 2s linear infinite;
    position: absolute;
    right: 95px;
    top: 15px;
}
