*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

body{
    background-image: url('./assets/img/bg.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100dvh;
}
section {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
section .section-head {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 10px;
}
section .section-head .header-title {
    font-size: 21px;
    color: #00275c;
    text-transform: uppercase;
    padding: 10px;
    border-radius: 10px;
    background-color: #fff;
}

section .section-message {
    margin-top: 10px;
}

section .section-message p {
    background-color: #ffffff69;
    padding: 30px;
    border-radius: 10px;
    width: 800px;
    text-align: center;
}
@media only screen and (max-width: 478px) {
    section .section-message p {width: 360px;}
	section .section-head .header-title {font-size:18px;}
}