/* ===== Reset ===== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ===== Global styles ===== */

body{
    font-family: sans-serif, Arial, Helvetica;
    background:#014D4E;
    color:#ffffff;
    line-height:1.6;
}

/* ===== Layout ===== */

.container{
    max-width:1100px;
    margin:auto;
    padding:20px;
}

.full-screen {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* spreads children vertically */
    height: 100vh;
    text-align: center;
}

.top, .middle, .bottom {
    padding: 20px;
}

/* ===== Headings ===== */

h1{
    font-size:64px;
    margin-bottom:32px;
}

h2{
    font-size:48px;
    margin-bottom:24px;
}

/* ===== Text ===== */

p
{
    font-size:32px;
    margin-bottom:16px;
}

.smallertext
{
    font-size: 24px; /* smaller text */
}


/* ===== Links ===== */

a{
    color:#6aa9ff;
    text-decoration:none;
    font-size:24px;
    margin-bottom:12px;
}

/* .bottom a {
    display: block;
    margin: 5px 0; /* optional spacing */
/*} */

a:hover{
    text-decoration:underline;
}

/* ===== Buttons ===== */

.button{
    display:inline-block;
    background:#3a7bff;
    color:white;
    padding:10px 18px;
    border-radius:5px;
}

.button:hover{
    background:#2a5ed8;
}

/* ===== Centered page layout ===== */

.center-screen{
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;
    text-align:center;
}

/* ===== Responsive images ===== */

img{
    max-width:100%;
    height:auto;
}