@font-face {
    font-family: 'DIN Pro';
    src: url('https://example.com/fonts/DINPro-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'DIN Pro', sans-serif;
    color: #2b2765;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    margin: 0;
    padding-top: 50px;
}

#header {
    width: 100%;
    height: 60px;
    background-color: #5C4B9A;
    position: fixed;
    top: 0;
    left: 0;
}

#logo {
    margin-bottom: 5px;
    margin-top: 20px;
}

#logo img {
    width: 150px;
    height: 50px;  
}

.button-group {
    display: flex;
}  

.button-group a {
    padding: 10px 20px;
    font-size: 16px;
    margin: 5px;
    text-decoration: none;
    color: white;
    background-color: #5C4B9A;
    border: none;
    cursor: pointer;
    width: 200px; 
    display: flex;
    justify-content: center;
    align-items: center;
}
  
.instruction-wrapper {
    width: 100%;
    max-width: 1100px;
    text-align: center;
    margin-bottom: 20px;
}

.instruction {
    font-family: 'DIN Pro', sans-serif;
    color: #2b2765;
    font-size: 24px;
    font-weight: 300;
}

a {
    padding: 10px 20px;
    font-family: 'DIN Pro', sans-serif;
    color: white;
    background-color: #5C4B9A;
    border: none;
    cursor: pointer;
}

a:hover {
    background-color: #5C4B9A;
}