@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

* {
    font-family: 'Roboto', sans-serif;
}

body {
    background: #181818;
    background-size: cover;
    background-position: center;
}

h1 {
    margin-top: 50px;
    text-align: center;
    color: white;
}

p {
    text-align: center;
    color: white;
}

a {
    color: orange;
    text-decoration: none;
}


.logo {
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    width: 500px;
    height: auto;
    display: block;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 98vh;
}

.box {
    padding: 50px;
    border-radius: 20px;
    background-image: url(https://venias.net/assets/img/about_hero_bg.jpeg);
    background-size: cover;
    background-position: center;
    width: 80%;
	 box-shadow: 0 0px 20px hsl(var(--black) / 1);
}