/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300&display=swap');

/* Global Styles */
body {
    font-family: 'Barlow', sans-serif;
    color: #243274;
    background: #cdcdcd;
}

/* Dock Menu Styles */
.dock-menu {
    width: 99%;
    display: flex;
    margin: 1vh auto;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
}

.dock-menu-logo img {
    display: block;
    width: 100px; /* Adjust as needed */
}

.dock-menu-header {
    color: #243274;
}

.dock-menu-content {
    display: inline-grid;
}

.dock-menu-content a {
    padding: 10px;
    margin: 10px;
    background-color: #ed9600;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
}

/* Document and Signature Styles */
.document, .signature {
    width: 80%;
    margin: 0 auto;
}

/* Media Query for Portrait Orientation */
@media (orientation: portrait) {
    .dock-menu-logo img {
        width: 400px;
    }

    .dock-menu-header {
        font-size: 60px;
    }

    .dock-menu-content a {
        font-size: 50px;
        padding: 30px;
        border-radius: 15px;
    }
}
