:root {
    --background-color: #FFFFFF;
    --font-family: "Yaldevi", sans-serif;
    --orange: #FF4D00;
    --body-text-color: #202020;
    --gray : #414141;
    --white : #FFFFFF;
    --title-font: "Vesper Libre", serif;
    --body-text-size-sm : 1rem;
    --body-text-size-md : 1.8rem;
}

@import url('https://fonts.googleapis.com/css2?family=Yaldevi:wght@200..700&display=swap');

body{
    background-color: var(--background-color);
    font-family: "Yalvedi", sans-serif;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 8vh;
    border-bottom: solid 2px var(--orange);
}

header > a {
    height: 100%;
}

header > a > img {
    height: 80%;
}


.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 92vh;
    flex-direction: column;
}

.container img {
   width: 100%;
}

.container h1 {
    font-family: var(--font-family);
    font-size: var(--body-text-size-md);
    color: var(--body-text-color);
    text-align: center;
    margin: 0;
    font-weight: normal;
}

.container p {
    font-size: var(--body-text-size-sm);
    color: var(--body-text-color);
    text-align: center;
}

.container a {
    color: var(--orange);
    text-decoration: none;
}

.container a:hover {
    text-decoration: underline;
    cursor: pointer;
}

@media (min-width: 768px) {
    .container img {
        width: 50%;
    }
}

@media (min-width: 1024px) {
    .container img {
        width: 30%;
    }
}