

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #000;
    color: #fff;
    
}
div.wrapper {
	width: 95%;
	margin: 0 auto;
	font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
	font-size: 1em;
	line-height: normal;
	min-width: 320px;
	max-width: 620px;
}
.responsive-nav {
	background-color:darkred;
	text-align: right;
	position: sticky;
	top: 0;
}

.responsive-nav .hamburger {
	font-size: 1.5em;
	color: yellow;
	background-color:
		transparent;
	cursor: pointer;
	border: none;

}

.responsive-nav .nav-items {
	display: none;
	list-style: none;
	padding: 0;
	margin: 0;
}

.responsive-nav li {
	padding: 0.5em;
}

.responsive-nav a {
	text-decoration: none;
	color: var(--text-header);
}
/* HEADER */
.hero {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(180deg, #111, #000);
}

.hero h1 {
    font-size: 3rem;
    color: #e50914;
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: #aaa;
}

/* ROBIN BUTTONS */
.robin-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    padding: 2rem 1rem;
    

}

.robin-card {
    background: #111;
    color: white;
    border: 2px solid #e50914;
    border-radius: 10px;
    width: 160px;
    cursor: pointer;
    text-align: center;
    padding: 0.5rem;
    transition: 0.2s ease;
}
.robin-card .ipad,.desktop{
    width: 0px;
    height: 0px;
}

.robin-card .iphone {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
}

.robin-card span {
    display: block;
    margin-top: 0.5rem;
    font-weight: bold;
}

.robin-card:hover {
    transform: scale(1.05);
    border-color: blue;
    color: yellow;
}
/* VIDEO SECTION */
.youtube_section {
    padding: 2rem 1rem;
    text-align: center;
}

.youtube_section h2 {
    color: #e50914;
    margin-bottom: 1rem;
}

.youtube_box {
    width: 90%;
    max-width: 700px;
    height: 350px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
}
footer{
    padding: .1rem;
    background-color: #2C2C2C;
    font-size: 15px;
    color: #aaa;
    text-align: center;
}


/*ipad or meduim responsive design starts here*/

@media (min-width: 48rem) {
    div.wrapper {
		font-size: 1em;
		min-width: 48rem;
		max-width: none;
		width: 95%;
		margin: 0 auto;
        line-height: normal;
	}

    .responsive-nav {
		text-align: left;
		position: sticky;
		top: 0;
	}

.robin-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    padding: 2rem 1rem;
    

}

.robin-card {
    background: #111;
    color: white;
    border: 2px solid #e50914;
    border-radius: 10px;
    width: 300px;
    cursor: pointer;
    text-align: center;
    padding: 0.5rem;
    transition: 0.2s ease;
}
.robin-card .iphone,.desktop{
    width: 0px;
    height: 0px;
}
.robin-card .ipad {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
}

.robin-card span {
    display: block;
    margin-top: 0.5rem;
    font-weight: bold;
}

.robin-card:hover {
    transform: scale(1.05);
    border-color: blue;
    color: yellow;
}
.responsive-nav .hamburger {
		display: none;
	}

	.responsive-nav .nav-items {
		font-size: .7em;
		display: flex;
		list-style: none;
		padding: 0;
		margin: 0;
	}
}

@media (min-width: 64rem){
    div.wrapper {
		font-size: 1em;
		min-width: 64rem;
		max-width: none;
		width: 100%;
		margin: 0 auto;
        line-height: normal;
	}

    .responsive-nav {
		text-align: left;
		position: sticky;
		top: 0;
	}

    /* ROBIN BUTTONS */
.robin-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    margin-left: 3%;
}

.robin-card {
    background: #111;
    color: white;
    border: 2px solid #e50914;
    border-radius: 10px;
    width: 200px;
    cursor: pointer;
    text-align: center;
    padding: 0.5rem;
    transition: 0.2s ease;
}
.robin-card .iphone{
    display: none;
}
.robin-card .ipad{
    display: none;
}

.robin-card .desktop {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 6px;
}

.robin-card span {
    display: block;
    margin-top: 0.5rem;
    font-weight: bold;
}

.robin-card:hover {
    transform: scale(1.05);
    border-color: blue;
    color: yellow;
}
}

