
/* override bootstrap styles */

@-ms-viewport {
    width: device-width;
}

html {
    height: 100%;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    padding: 0;
    margin: 0;
    color: darkslategrey;
    background: linear-gradient(270deg, #97dbea, #b88990);
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.content-box h1 {
    margin-top: 0;
}

a:link, a:visited {
    color: black;
    text-decoration-line: underline;
}

a:hover {
    color: hotpink;
}

@media (max-width: 600px) {
    .content-box {
        padding: 30px 20px;
        margin: 10px;
    }
    
    body {
        padding: 10px;
    }
}