@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;700&display=swap');

@font-face {
    font-family: 'Graphik';
    src: url('../fonts/GraphikLight.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Graphik';
    src: url('../fonts/GraphikMedium.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}


:root {
    --primary-color: #0018a8;
    --primary-color-rgb: 0, 0, 255;
    --secondary-color: #e5e5ff;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #34495e;
    --text-color: #221E20;
    --text-light: #a4ace0;
    --alert-strong: #DE7171;
    --alert-soft: #FFE5E5;
}


h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.3rem;
}

p {
    margin: 0.5rem 0;
}

* {
    box-sizing: border-box;
}

.color-primary {
    color: var(--primary-color);
}

.text-strong {
    font-weight: 700;
}

.text-xl {
    font-size: 2rem;
}

.text-s {
    font-size: 0.7rem;
}

@media (orientation: landscape) {
    @media (max-height: 599px) {
        html {
            font-size: 1.8vw;
        }
    }

    @media (min-height: 599px) {
        html {
            font-size: 1.8vh;
        }
    }

}

@media (orientation: portrait) {
    @media (max-width: 599px) {
        html {
            font-size: 1.8vh;
        }
    }

    @media (min-width: 599px) {
        html {
            font-size: 1.8vw;
        }
    }
}

body {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-family: 'Graphik', sans-serif;
}


.header {
    background: white;
    height: 5rem;
    padding: 1rem;
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: left;
    -webkit-box-shadow: 0px 0 2rem -0.3rem rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0 2rem -0.3rem rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0 2rem -0.3rem rgba(0, 0, 0, 0.75);
}

.logo {
    object-fit: contain;
    max-width: 15rem;
    height: 100%;
}

.corus-logo {
    max-width: 8rem;
}

.toLanding {
    cursor: pointer;
}

.blue-line{
    width: 210px;
    height: 1px;
    background-color: #0018A8;
    margin: 8px 0px;
}

.title-event {
    display: flex;
}

.rotate-icon-container {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #E5E5FE;
    border-radius: 15px;
    padding: 15px;
    max-width: 284px;
    max-height: 106px;
    z-index: 1000;
}

.rotate-icon-wrapper {
    display: flex;
    align-items: center;
}

.rotate-icon-text {
    color: #0C18A8;
    font-size: 12px;
    line-height: 16px;
    margin-left: 8px;
}

.rotate-icon {
    width: 59px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rotate-outline {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    z-index: -1;
}

/* Contenido de la página */
.content {
    padding: 20px;
    text-align: center;
}

.logo {
    margin-top: 100px;
    font-size: 72px;
    color: #0033cc;
    font-weight: bold;
}

.smiley {
    font-size: 50px;
    margin-right: 15px;
}