* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    background-color: #404a65;
    width: screen ;
    height: screen;
    display: relative;
}

section {
    width: 80vw;
    height: 80vh;
    place-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #404a65;
    color: #ecedf0;
}

h1 {
    font-family: "Kanit", sans-serif;
    font-size: 4rem;
    font-weight: 900;
    font-style: normal;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 0px #35383f;
    -webkit-text-stroke-width: 5px;
    -webkit-text-stroke-color: #35383f;
}

p {
    margin-bottom: 4rem;
    font-family: "Kanit", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    font-style: normal;
    text-align: center;
}

.shadow {
    margin-bottom: 4rem;
    margin-top: 3rem;
}

h5 {
    margin-bottom: 4rem;
    font-family: "Kanit", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    font-style: normal;
}

button {
    background-color: #1f6fb0;
    color: #ecedf0;
    border: none;
    padding: 1rem 2.5rem;
    cursor: pointer;
    box-shadow: 0px 4px 0px 0px #23649b;
    font-family: "Kanit", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    font-style: normal;
    border-radius: 0.5rem;
}