
/* HEADER */
header {
    display: flex;
    flex: 1;
    justify-content: center;

    padding-top: 20px;
    padding-bottom: 20px;

    margin-bottom: 40px;
}

.logo {
	width: 300px;
    height: auto;
}
/* HEADER */

body {
	background-color: #08090B;
	background-repeat: no-repeat;
	background-size: cover;
	
	overflow-y: auto;
}

ol {
	font-weight: bold;
}

.terms-container {
    display: flex;    
    justify-content: center;

    padding-left: 15px;
    padding-right: 15px;
}

.terms {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;

    width: 90%;

    padding: 40px 40px 40px 40px;
    border-radius: 30px;

    background-color: white;

    margin-bottom: 40px;
}


/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 
    .terms {
		width: 60%;

        font-size: 20px;
	}

    .logo {
        width: 180px;
        height: auto;
    }
}
