@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
}

header {
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 100;
    height: 56px;
}

header h1 {
    margin: 0;
    padding-left: 72px;
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.15px;
    color: #4f4cfd;
    text-align: left;
}

.logo-link {
    text-decoration: none; 
}

header nav {
    padding-right: 27px;
}

header nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #0D0D0D;
}

main {
    text-align: center;
    padding-top: 70px;
    width: 100%;
}

main p {
    font-size: 18px;
    margin-bottom: 40px;
}

.spinner {
    border: 4px solid #4f4cfd;
    border-left-color: rgba(79, 76, 253, 0.5);
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-left: 10px;
}

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