@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

* {
    font-family: "Bebas Neue", sans-serif;
}

nav {
    display:flex;
    flex-direction:row; 
    justify-content:space-between;
}

.header_div {
    padding: 1% 0%;
}

header {
    font-size: 50px;
    text-align: center;
}

.header_div p  {
    text-align: center;
    font-size: 20px;
}

p {
    font-size: 20px;
}

.layout {
    display: grid;
    /* fr = fractional unit */
    grid-template-columns: 1fr 1fr; 
    height: 65vh;
}

.left {
    display: flex;
    justify-content: center;
    padding: 0% 5%;
}

.right {
    display: flex;
    align-items: center;
}

.right p {
    font-size: 20px;
}

body {
    padding: 1% 3%;
}

a {
    text-decoration: none;
    font-size: 40px;
}

hr {
    margin-bottom: 3%;
}

table {
    width: 100%;
    border: solid;
    border-radius: 10px;
    margin: 2% 0%;
}

td {
    padding: 1% 0%;
    text-align: center;
}

td a {
    display: block;
    width: 100%;
}

a button {
    font-size: 20px;
    padding: 1% 25%;
    border-radius: 8px;
    background-color: #f4b6c2;
    border: none;
    cursor: pointer;
}

a button:hover {
    font-size: 40px;
    padding: 1% 25%;
    border-radius: 8px;
    background-color: #e89bab;
    border: none;
    cursor: pointer;
}

iframe {
    height: auto;
    width: 100vh;
}

img {
    height: 60vh;
}