/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 12.01.2025, 01:47:24
    Author     : Duffy
*/

body {
    background-color: linen;
}
.center {
    margin: auto;
}
.center_vertical {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
}
.centerblack {
    margin: auto;
    width: 60%;
    align-items: center;
    text-align: center;
    border: 3px solid black;
    padding: 10px;
}
.centergray {
    margin: auto;
    width: 50%;
    border: 3px solid gray;
    padding: 10px;
}
p {text-align: center;
   font-size: larger; }

a {text-align: center;}

h3 {font-size: 35px;}

h1 {
    color: black;
    margin-left: 40px;
    font-size: 70px;
}
body {
    margin: 0;
    padding: 0;
}

/* use viewport-relative units to cover page fully */
body {
    height: 100vh;
    width: 100vw;
}

/* include border and padding in element width and height */
* {
    box-sizing: border-box;
}